Forum Discussion
DAX IF/THEN Statement
- 6 years ago
First, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Second, that is the symbol for a measure.
Third, guessing that [NumberOfUsers] is a column, you will need to use aggregation like so:
Measure = SWITCH(TRUE(); SUM([NumberOfUsers]) < 250; "SME"; SUM([NumberOfUsers]) < 1000 ; "Corporate"; SUM([NumberOfUsers]) < 5000 ; "Enterprise"; SUM([NumberOfUsers]) >= 5000 ; "Global"; BLANK())
First, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Second, that is the symbol for a measure.
Third, guessing that [NumberOfUsers] is a column, you will need to use aggregation like so:
Measure = SWITCH(TRUE();
SUM([NumberOfUsers]) < 250; "SME";
SUM([NumberOfUsers]) < 1000 ; "Corporate";
SUM([NumberOfUsers]) < 5000 ; "Enterprise";
SUM([NumberOfUsers]) >= 5000 ; "Global";
BLANK())I also appear to have copied the wrong symbol, which seems to be the reason i can't do a simple "IF" command on that field... See below what I meant to show you.
I am simply trying to create a measure that will look at the field "Enrollment Number" and search for certian strings, when it finds one then return a new Value. So for example if it finds "1098333" I want to return "BOB" into the new measure.
Mamy thanks for your support.