Forum Discussion
Anonymous
2 years agoNot applicable
Dax Help
Hi all, I have a query as below I have po number and BaseNumber columns If po number is not blank then it's considered as "Po Yes" If po number is blank and base number for that blank record...
- 2 years ago
Hi,
try this as a calculated column:
Column = if('Table'[PO Number]<>"", "PO Yes",if(CALCULATE(max('Table'[PO Number]),ALLEXCEPT('Table','Table'[BaseNum]))<>"", "PO No NIK","PO No"))If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
DOLEARY85
2 years agoResident Rockstar
Hi,
try this as a calculated column:
Column = if('Table'[PO Number]<>"", "PO Yes",if(CALCULATE(max('Table'[PO Number]),ALLEXCEPT('Table','Table'[BaseNum]))<>"", "PO No NIK","PO No"))
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
- Anonymous2 years agoNot applicable
Thanks a lot it helped !!