Summer7sun
New Member
- Joined
- Sep 14, 2017
- Messages
- 33
Hello world!
Please help me out with this
I have a work book which has 2 sheets named "Apple" And "Mango"
Sheet Apple cell A7 = Sheet Mango A1 example =Mango!A1
on Sheet Mango A1 it has a drop downlist and has many items
I have a macro to go to the next item in the list which is named as NextDropList
My code
I would like to Loop until the cell value in Mango A1 is blank or empty or has a value as "END of List"
Please help me out with this
I have a work book which has 2 sheets named "Apple" And "Mango"
Sheet Apple cell A7 = Sheet Mango A1 example =Mango!A1
on Sheet Mango A1 it has a drop downlist and has many items
I have a macro to go to the next item in the list which is named as NextDropList
My code
Code:
Sub CallTest()
Application.ScreenUpdating = False
Sheets("List").Select
Range("H1").Select
Call Fixit
Call Format
Call NewTest
Call NextDroplist
Sheets("List").Select
Range("H1").Select
Application.ScreenUpdating = True
End Sub
I would like to Loop until the cell value in Mango A1 is blank or empty or has a value as "END of List"
Last edited: