K
kvenku
Hi,
I have a VBA application where i need to know that sheets1 contain
any data on it
I tried this and this take a long time to execute..Can you help me out
For StrRow = 1 To Rows.Count
For StrCol = 1 To Columns.Count
If Len(Cells(StrCol, StrRow).Value) > 0 Then
MsgBox "Found"
Exit Sub
End If
Next
Nex
I have a VBA application where i need to know that sheets1 contain
any data on it
I tried this and this take a long time to execute..Can you help me out
For StrRow = 1 To Rows.Count
For StrCol = 1 To Columns.Count
If Len(Cells(StrCol, StrRow).Value) > 0 Then
MsgBox "Found"
Exit Sub
End If
Next
Nex