VBA dropdown list and need to loop through it

tatendatiffany

Board Regular
Joined
Mar 27, 2011
Messages
103
I am trying to do a loop that runs throught all the different tables specified on a drop down list. the range containing the dropdown list is GESTATUS and the worksheet is worksheet 2 (element) is the name of the sheet. How would i go about doing this.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hi,

Somethig like this?

Code:
Sub MyLoop()

    Dim rngCell As Range
    
    For Each rngCell In Range("GESTATUS")
        'Your Code Here
    Next rngCell

End Sub
 
Upvote 0
Hi,

Thank you very much let me try it.
but another quick question where said ' code here' what do i put there because i thought the loop was the code.... do i add a query that says were the result should be displayed.

*sorry about the dumb question am a beginner trying to understand as much as i can
:)
 
Upvote 0

Forum statistics

Threads
1,222,759
Messages
6,168,052
Members
452,160
Latest member
Bekerinik

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