P
professor1554
Using a macro, I would like to to do the following:
If TableBookMark!K10 < 0 Then
CkboxField1.True or CkboxField1 = True
CkboxField2.False or CkboxField2 = False
Else
CkboxField1.False
CkboxField2.True
I have cell (K10) in a table (called Table1) that has either a positive or
negative value. I have two check boxes, one labelled 'Decreased', the other
labelled 'Increased'. Depending on whether K10 is pos or neg, I want the
appropriate Checkbox checked. Can I do this? Is a macro the answer, and if
so how do I find out the code? Is there a good online reference for MS macro
reserved names, that doesn't cost anything?
If TableBookMark!K10 < 0 Then
CkboxField1.True or CkboxField1 = True
CkboxField2.False or CkboxField2 = False
Else
CkboxField1.False
CkboxField2.True
I have cell (K10) in a table (called Table1) that has either a positive or
negative value. I have two check boxes, one labelled 'Decreased', the other
labelled 'Increased'. Depending on whether K10 is pos or neg, I want the
appropriate Checkbox checked. Can I do this? Is a macro the answer, and if
so how do I find out the code? Is there a good online reference for MS macro
reserved names, that doesn't cost anything?