atadbitslow
Programmer
I need to create a report that displays address changes. But the trick is I need to have the field(s) that changed appear in bold.
Any ideas? Thanks!
Any ideas? Thanks!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'Case a:
If Me![AddressField1] = Me![AddressField2] Then
Me![State].FontWeight = 700
Else
Me![State].FontWeight = 400
End If
'Case b:
If Me![NameOfYesNoField] = -1 Then '-1 stands for true
Me![State].FontWeight = 700
Else
Me![State].FontWeight = 400
End If