dpaton05
Well-known Member
- Joined
- Aug 14, 2018
- Messages
- 2,362
- Office Version
- 365
- 2016
- Platform
- Windows
I have a check box that I want to enter a value in a field in a table if it is clicked. This is the code I have so far but it won't work. What else do I need to do?
npss_quote is the table name and 10%Increase is the column name. The table only has one line at the moment.
Thanks,
Dave
Code:
Select Case chkIncrease_Click()
Case Is = True
index(npss_quote[10%Increase],1)="1.1"
npss_quote is the table name and 10%Increase is the column name. The table only has one line at the moment.
Thanks,
Dave