on ‎2019 Jul 15 8:44 AM
Hello
I want to set mandatory rule on field Order Intake Date. When Project value is greater than 25000 and project status value is 40 or 60 then Order Intake date is mandatory.
AND (Root.ProcessingTypeCode == "ZPRO", Root.ExpectedRevenueAmount.content >= "25000", Root.ExpectedRevenueAmount.currencyCode =="EUR"), Root.Z_ProjectStatus == "40", Root.Z_ProjectStatus == "60")
How to set condition for two values for project status in condition?
Thanks and best regards,
Pallavi
Request clarification before answering.
Hi,
Can you please try something like this?
AND(Root.ProcessingTypeCode == 'ZPRO', AND( Root.ExpectedRevenueAmount.content >= 25000 , Root.ExpectedRevenueAmount.currencyCode == 'EUR', OR( Root.Z_ProjectStatus == '40', Root.Z_ProjectStatus == '60', true, false), false),false)
Regards
Saurabh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.