DataBlake
Well-known Member
- Joined
- Jan 26, 2015
- Messages
- 781
- Office Version
- 2016
- Platform
- Windows
Hello all,
The title pretty much says it all but i have a list of macros that i want to correlate to a userform using the tick boxes, but for the life of me i don't understand the userform part of VBA. Can someone help me create a userform that will compile a list of macros to call? lets say
and depending on their selection it grabs those specific macros in order that they are presented?
Option1:
Option2:
Option3:
so if someone selects options 1 & 3 it would compile like
The title pretty much says it all but i have a list of macros that i want to correlate to a userform using the tick boxes, but for the life of me i don't understand the userform part of VBA. Can someone help me create a userform that will compile a list of macros to call? lets say
Code:
"Please select your desired functions"
Option1
Option2
Option3...
and depending on their selection it grabs those specific macros in order that they are presented?
Option1:
Code:
Call ATSfigures
Call boltFIX
Call partLOOK
Option2:
Code:
Call deleteBLANK
Call otoqLOOK
Call CharacterLimit
Option3:
Code:
Call updateMS
Call Workaround
Call obscureFILTER
so if someone selects options 1 & 3 it would compile like
Code:
Call ATSfigures
Call boltFIX
Call partLOOK
Call updateMS
Call Workaround
Call obscureFILTER