How to goto next iternation in for?

SathyaM

New Member
Joined
Aug 2, 2013
Messages
4
Hi Experts,

I am trying to write a code which should work if any one of the cell in Range(AL10 to AL37) is yes and if blank or no it should go to next iternation. Something i am missing here, its displays messge for all iternation(even for balnk values).


Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim r As Range
Set r = Worksheets("Resource Addition").Range("AL10:AL37")
For Each cell In r
If Len(cell) <> 0 And cell.Value = "Yes" Then
Call abc
End If
Next
End Sub
Sub abc()
IsEmpty (Cells(ActiveCell.Row, ActiveCell.Column + 1).Value)
MsgBox "Time"
End Sub

only if range value its true it should call the funcation but I am getting the message for blank values of cell.

Please help to resolve.

Thanks for the help.

Regards
Sathya
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).

Forum statistics

Threads
1,223,248
Messages
6,171,027
Members
452,374
Latest member
keccles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top