Forum Discussion
e77948
4 years agoRegular Visitor
How do I write an IF then formula
I have a table and I need to show the data depending upon one column, I am trying to write a measure that will show the number of work items if that colu
- 4 years ago
Ah, ok, my bad. Text functions don't skip blanks.
Try this one:
if [Tags] = null then "Primary" else if Text.Contains([Tags], "Secondary") then "Secondary" else "Primary"Pete