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.
[blue] If [purple][b]YourConditon[/b][/purple] = True Then
[LableName].Backcolor = 32768 'Green
[LableName].ForeColorcolor = 65535 'Yellow
Else
[LableName].Backcolor = 16777215 'White
[LableName].ForeColorcolor = 0 'Black
End If[/blue]
In my post I didn't mention an option. I mentioned a [blue]section event![/blue] Formatting in this way is different than the traditional [blue]Conditional Formatting[/blue] provided in the main menubar!willsth said:[blue]I dont get the option 'Format' on this field[/blue]
If Nz(me!Outstanding,"") = "" Then
blVal = False
Else
blVal = True
End If
Me!txtOut.Visible = blVal
Me!txtStage.Visible = blVal
[blue] If Trim([Outstanding] & "") = "" Then
blVal = False
Else
blVal = True
End If
[TxtOut].Visible = blVal
[TxtStage].Visible = blVal[/blue]