This seems to be something easy to do, but I have yet to be able to get it working right. I have a field called Running Total that automatically updates as it calculates numbers being put into other fields. When the Running Total is >= to a certain number I would like a message box to automatic come up. Writing the IF statement I don't think is the problem I am having, but not sure which Form event to put it in. I thought AfterUpdate would work, but from what I understand you can't use AfterUpdate event in a calculated field. I tried it anyway, but it didn't work. Maybe I am taking the wrong approach
The if statement I have is the following:
If (Running_Total >= PmCycle) Then
MsgBox "Time for tool to be PM'd"
End If
Thanks for your help
Steve
The if statement I have is the following:
If (Running_Total >= PmCycle) Then
MsgBox "Time for tool to be PM'd"
End If
Thanks for your help
Steve