Message 1 of 11

Not applicable
09-06-2017
02:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
In the attached part, I don't understand why these two rules produce a different result:
Rule 1
If Parameter("glass") = 21.5 Then
MsgBox("Standard")
Else
MsgBox("Non-Standard")
End If
Message - Non-Standard
Rule 2
If glass = 21.5 Then
MsgBox("Standard")
Else
MsgBox("Non-Standard")
End If
Message - Standard
I need to use the Parameter("glass") format as it's going to be an external rule, but I'm totally miffed as to why its producing the result it is.
Anyone able to provide some insight?
Solved! Go to Solution.