View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
sebastienm sebastienm is offline
external usenet poster
 
Posts: 694
Default New Collection add trim

Hi,
You can just do
if len(trim(cell)) 0 AND len(trim(cell)) <9521 Then

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Tomkat743" wrote:

This works perfect but how would I add the following? Please Help.
How can I add if len(trim(cell)) <9521 then

Dim bkList As New Collection
With Workbooks("1DLSUNDAY.XLS").Worksheets("Master")
Set rng = .Range(.Cells(2, 3), .Cells(200, 3).End(xlDown))
End With

On Error Resume Next
For Each cell In rng
if len(trim(cell)) 0 then
bkList.Add Trim(cell.Text), Trim(cell.Text)
end if
Next
On Error GoTo 0

For Each itm In bkList
Workbooks.Open "C:\Documents and Settings\Tom\Desktop\CHARTER BLANK\NEW
BLANK\" & _
itm & ".xls"
Next