hi guys. I have looked thru the posts here, and have found some that are close.. But none that works for my particular case..
I have a currency formatted and unbound calculated text box that displays a calculated currency amount
If Me![TotalEquity] <= 0 Then
Me![TotalEquity].ForeColor = RGB(255, 0, 0)
Else
Me![TotalEquity].ForeColor = RGB(0, 255, 0)
End If
Basically I want a postive amount to return a green text color and a negative amount to return a red text color. The above code does not work... please give direction...not much hair left at this point..
Thanks
Jeff
I have a currency formatted and unbound calculated text box that displays a calculated currency amount
If Me![TotalEquity] <= 0 Then
Me![TotalEquity].ForeColor = RGB(255, 0, 0)
Else
Me![TotalEquity].ForeColor = RGB(0, 255, 0)
End If
Basically I want a postive amount to return a green text color and a negative amount to return a red text color. The above code does not work... please give direction...not much hair left at this point..
Thanks
Jeff