Forum Discussion
If Statements doesn't give value as expected, skips the code
Hi tejaswidmello,
I test your expression in my environment, it work well , so I am not sure which part cause this problem. You could check whether your measure is correct or whether other factors cause this problem . If possible, could you please inform me more detailed information (such as your data sample or upload your pbix sample)? Then I will help you more correctly.
Measure 8 = MAXX(Table5,IF(Table5[group]="LBLTHT", IF(Table5[type]="ZNBW", IF (Table5[meas]<>"EA" ,1,2))))
Please do mask sensitive data before uploading.
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous7 years agoNot applicable
Hi Zoe dax
Thanks for your reply!
The one you showed works for me until we do not add the case 1 code in it.. for ex. shown below: ( the below code includes both Case 1 and case 2.) This code won't work for the later part of the code which says material group= LBLTHT, Type- ZNBW and BUOM<> EA. and if it finds this combination it adds blank
I want both these cases in the same measure.
Can you please help with this?
Base UOM Highlights = Maxx( material,
IF(Material[Material group]="CORSF" || Material[Material group]="LBLTHT",IF(Material[Material type]="ZHWA",IF (Material[Base Unit of Measure]<>"EA" && Material[Base Unit of Measure]<>"ROL",1,2)),
IF(Material[Material group]="LBLTHT",IF(Material[Material type]="ZNBW",IF (Material[Base Unit of Measure]<>"EA" ,1,2))Thanks,Tejaswi- Anonymous7 years agoNot applicable
- Anonymous7 years agoNot applicable