Hi all,
If I want to add 3 more (Working on, Awaiting Information and Frozen case), how can I do this?
Code:
Private Sub cmbo_query_categorization_AfterUpdate()
Me.expected_resolution_time = IIf(Me.cmbo_query_categorization = "non standard", CDate(Me!date_received) + 5 + SkipWeekends(CDate(Me!date_received) + 5), (Me.cmbo_query_categorization = "Working on", CDate(Me!date_received) + 5 + SkipWeekends(CDate(Me!date_received) + 5), CDate(Me!date_received) + 2 + SkipWeekends(CDate(Me!date_received) + 2))
End Sub
When I try it in the above code, I get here an error on the coma (,) after the "non standard":
Code:
Me.expected_resolution_time = IIf(Me.cmbo_query_categorization = "non standard",
Greetings.