View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier[_3_] Roger Govier[_3_] is offline
external usenet poster
 
Posts: 2,480
Default Exit Sub if count less than zero.

Hi

If WorksheetFunction.Count(T4:T53) = 0 Then Exit Sub

--
Regards
Roger Govier

" wrote in
message ...
Need help on this.

I don't want the Macro to work if [***IF COUNT(T4:T53) = 0 THEN EXIT
SUB***]
inside the Macro below.


Sub SettleAutoDue()

***IF COUNT(T4:T53) = 0 THEN EXIT SUB***

Worksheets("A-3").Range("U4:Z4").Copy
Range("G5").PasteSpecial Paste:=xlPasteValues, Transpose:=True
Application.CutCopyMode = False
Range("G4").Activate

End Sub


Thank you.