Running Macro based upon the value of a cell

MonsterNco

New Member
Joined
Aug 28, 2017
Messages
2
Dim ws As Worksheet
For Each ws In Sheets
ws.Activate

"Macro Information"


Next ws


End Sub



I currently have this Macro that runs on all sheets on a selected workbook. I want to add a step that checks B51 on each sheet as it runs if the cell is equal to 0 I want it the macro to move on to the next open spreadsheet. Thank you for any help you can give.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Code:
Dim ws As Worksheet
     For Each ws In Sheets
            ws.Activate
        If ws.Range("B51") <> 0 Then
             "Macro Information"
        End If
    Next ws
 End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,206
Messages
6,123,636
Members
449,109
Latest member
Sebas8956

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