Forum Discussion
FatBlackCat30
6 years agoMicrosoft Employee
Re: Multiple if statements
I am reposting this becuase I had my logic incorrect before multiple if statement 1. if load says "Many" the outcome should be "Many" 2. but if the count is > 1 the outcome should be "both" 3...
- Anonymous6 years ago
Try
Outcome = IF('Table'[Load] = "Many", "Many", IF('Table'[Count] > 1, "Both", 'Table'[Load])) - 6 years ago
Try this:
Column = SWITCH(TRUE(), Table1[Load] = "Many", "Many", Table1[Count] > 1, "Both", Table1[Load])Result:
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂
Anonymous
6 years agoNot applicable
Try
Outcome = IF('Table'[Load] = "Many", "Many", IF('Table'[Count] > 1, "Both", 'Table'[Load]))