Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
EX.
There is a WorkOrder with 3 data values
i use code
Result
but showing Open for every WorkOrder
It has to be Open 3
Only matches the WorkOrder with data.
I want Open to show only WorkOrder values.
Hi
You can add if condition based on ur condition like
If(Match(WorkOrder, 'a', 'b', 'c'), 'Open URL', '')
Instead of a, b, c, u can change based on ur scenario
different workOrder numbers after A .
WorkOrder Example
WorkOrder Example
So, you want to check the work order starts with A?
If so, try like below
If(wildMatch(WorkOrder, 'A*'), 'Open URL', '')
No, I need it to match every WorkOrder to show Open.
I want workorder to match every number