Forum Discussion
DMB90
Helper II
4 years agoExpression For If Not and If It Is
Hi,
I am trying to build a measure that says:
If column A does not say "No Population" then look and see if column B says "Complete" and if both are true then say "Ready for Review" and if not then pull whatever else is in Column B.
4 Replies
- amitchandak
Super User
DMB90 , a New column would be best
but for a measure
if( max(Table[A]) = "No Population" && Max(Table[B]) = "Complete", "Ready for Review" , Max(Table[B]) )
- ddpl
Solution Sage
- DMB90
Helper II
Sorry, I meant if it's NOT "No Population" and the other column says "Complete" then follow the previous statements.
- ddpl
Solution Sage