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
I wonder why this does not work:
Solved! Go to Solution.
@Anonymous , This is column can you show in the table view?
Also, check if PROJECT_NUMBER is text, check is it a empty string ""
Try this one:
Status 2 =
var order_type = SELECTEDVALUE('DailyASCPPlan Data'[ORDER_TYPE_TEXT])
var is_blank = ISBLANK('DailyASCPPlan Data'[PROJECT_NUMBER])
return
IF( order_type = "Planned order demand" && is_blank,
"Planned",
"Ordered")
Nevertheless, it may be best to create a "Calculated Column" or a "Custom column" in Power Query.
Hope this answer solves your problem! If you need any additional help please tag me in your reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️ or give it a kudoe 👍
Thanks!
Best regards,
Gonçalo Geraldes
Thank you so much. I appreciate your help. This actually works. Tho i just found out that the actual value is not really blank, rather a "". so i did not use isblank and rather evaluate if field = "".
Hey @Anonymous ,
it looks like it works, but I guess you expected a different result 😉
In Power BI you can add a calculated column, that's just a new column in the table. A calculated table is calculated when the file is loaded and then fix. The value won't change based on slicers.
Or you can use a measure. A measure always needs a context and is calculated based on this context.
Based on your formula I guess you used a calculated column.
In your screenshot you used a matrix, so rows might be hidden based on your selection.
To see if all of your values are existing, go to the Data tab and check the result in the complete table there:
@selimovd Thank you so much. I appreciate your help. This actually works. Tho i just found out that the actual value is not really blank, rather a "". so i did not use isblank and rather evaluate if field = "".
Right. It's "" not blank. thanks for the info!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 86 | |
| 85 | |
| 68 | |
| 64 |