In the detail section of the form, I want to disabled the control labeled "HoursQty" based on the control "RateOnlyInd" using a conditional formatting rule.
Controls on the form are: ServiceTxt RateOnlyInd HoursQty RateAmt
Data:
Service1 True
Service2 False
Service3 False
Service4 True
Service5 True
I have tried:
[HoursQty].[Enabled]=[RateOnlyInd]
[HoursQty].[Enabled]= ([RateOnlyInd] = True)