I have an Excel UserForm that I use to enter data from my job. I commission solar inverter stations. Each row in my spread sheet contains data for a different station. On my UserForm I have a CommandButton, that when press takes the data from the current row being displayed in the UserForm and writes it to a fillable PDF. On this UserForm I have ToggleButtons and OptionButtons that return for selecting different options. The problem is these buttons return True or False to their respective cells and Adobe Acrobat needs Yes or NO for the Checkboxes that correspond to these cells.
Here's an example of one of my OptionButton groups:
1. There are 3 Option Buttons named zI, zJ and zK captioned “SMA CoMVPP” “SMA MVPP” and “CUSTOMER SUPPLIED” respectively.
2. Option Button zI will enter data in to Cell I for the current row I am entering data in ith the UserForm, zJ will enter into J and zK will enter into K.
3. Right now if I check zI, “True” will be entered into Cell I and “False” will be entered into Cells J and K, I need those to be "Yes" or "No".
Here's an example of one of my ToggleButton setups.
1. There are 4 Toggle Buttons named zY, zZ, zAA and zAB, captioned "Wiring", "User", "Install" and "Keys" respectively
2. Toggle Button zY will enter data into Cell Y for the current row I am entering data in with the UserForm, zZ, zAA and zAB will enter into A, AA and AB respectively
3. Right now if I click zY, “True” will be entered into Cell Y and if I unclick it "False will be entered, the same thing applies for the other Toggle Buttons and there respective cells.
I have search code on this site and countless other Excell and VBA forums but can't get any of the code to work on my UserForm, it's probably me... doesn't seem like it should be that hard.
Here's an example of one of my OptionButton groups:
1. There are 3 Option Buttons named zI, zJ and zK captioned “SMA CoMVPP” “SMA MVPP” and “CUSTOMER SUPPLIED” respectively.
2. Option Button zI will enter data in to Cell I for the current row I am entering data in ith the UserForm, zJ will enter into J and zK will enter into K.
3. Right now if I check zI, “True” will be entered into Cell I and “False” will be entered into Cells J and K, I need those to be "Yes" or "No".
Here's an example of one of my ToggleButton setups.
1. There are 4 Toggle Buttons named zY, zZ, zAA and zAB, captioned "Wiring", "User", "Install" and "Keys" respectively
2. Toggle Button zY will enter data into Cell Y for the current row I am entering data in with the UserForm, zZ, zAA and zAB will enter into A, AA and AB respectively
3. Right now if I click zY, “True” will be entered into Cell Y and if I unclick it "False will be entered, the same thing applies for the other Toggle Buttons and there respective cells.
I have search code on this site and countless other Excell and VBA forums but can't get any of the code to work on my UserForm, it's probably me... doesn't seem like it should be that hard.