Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
HI Team ,
I need your big help on the condition measure.
what i want is :
1st : create another column , if Complete Status = Complete and close status = Close , then it's "Complete & Close"
If Complete Status = Complete and Close Status = Blank , then it's "Complete No Close"
If Complete Status = Blank and Close Status = Blank , then it's " In Progress"
Solved! Go to Solution.
Try this
New Column =
var com_status = Complete Status // Use your complete status column
var clo_status = close Status // Use your close status column
return switch ( true(),
com_status = "Complete" && clo_status = Close ,"Complete & Close",
com_status = "Complete" && Isblank(clo_status) ,"Complete No Close",
Isblank(com_status) && Isblank(clo_status),"In Progress",
"None"
)
Try this
New Column =
var com_status = Complete Status // Use your complete status column
var clo_status = close Status // Use your close status column
return switch ( true(),
com_status = "Complete" && clo_status = Close ,"Complete & Close",
com_status = "Complete" && Isblank(clo_status) ,"Complete No Close",
Isblank(com_status) && Isblank(clo_status),"In Progress",
"None"
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |