Hi
In below code i want if Eval(Onbreak) = 'OnBreak then this condition should not get evaluated . If it is not onbreak then this condition should be evaluated
Thanks
Hi
In below code i want if Eval(Onbreak) = 'OnBreak then this condition should not get evaluated . If it is not onbreak then this condition should be evaluated
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tuhin PaulPosted Apr 12, 2023, 2:36 AM
You can modify the code to include an additional check for the OnBreak value. If it's equal to "OnBreak", then the first condition should be skipped, and if it's not equal to "OnBreak", then the first condition should be evaluated.
The first condition checks if OnBreak is equal to "OnBreak". If it is, then it skips the first condition and evaluates the second condition, which displays TentativeDeliveryDate. If OnBreak is not equal to "OnBreak", then it evaluates the first condition and displays either BookDeliveredOn or TentativeDeliveryDate depending on which one is not empty.
Ramco RamcoPosted Apr 12, 2023, 2:56 AM
Hi Tuhin
I want if Eval(OnBreak) = 'OnBreak' then '' else the above condition should be evaluated as it is
I have written below condition but still it is displaying Date . In Eval(OnBreak) it is OnBreak
Thanks