generaluser
Technical User
Here is my program:
Function Rating(Text186)
If Text186 = 0 Then
Reports!rpt_scorecard![Quality_rating] = "No Score"
ElseIf Text186 >= 3 Then
Reports!rpt_scorecard![Quality_rating] = "H"
ElseIf Text186 > 0 Then
Reports!rpt_scorecard![Quality_rating] = "L"
End If
End Function
Text186 - an unbound textbox in my report
[Quality_rating] - is a field in my report
When I go to compile it, it tells me that I can't assign a
value to this object. If anyone knows what's wrong please let me know.
Function Rating(Text186)
If Text186 = 0 Then
Reports!rpt_scorecard![Quality_rating] = "No Score"
ElseIf Text186 >= 3 Then
Reports!rpt_scorecard![Quality_rating] = "H"
ElseIf Text186 > 0 Then
Reports!rpt_scorecard![Quality_rating] = "L"
End If
End Function
Text186 - an unbound textbox in my report
[Quality_rating] - is a field in my report
When I go to compile it, it tells me that I can't assign a
value to this object. If anyone knows what's wrong please let me know.