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 building a visual table where some values on some days has null or blank values. Please advise. Thanks in advance.
Accepted = if(isblank(SUM(Chat_Snowflake[ACCEPTED Original])),0,SUM(Chat_Snowflake[ACCEPTED Original]))
or
Accepted = if(SUM(Chat_Snowflake[ACCEPTED Original]=0,0,SUM(Chat_Snowflake[ACCEPTED Original])
Solved! Go to Solution.
what exactly are you trying to do with the blank values?
It looks like maybe you want them to display as zeros?
Accepted = COALESCE(SUM(Chat_Snowflake[ACCEPTED Original]), 0)
//Mediocre Power BI Advice, but it's free//
using Accepted = coalesce(sum(Chat_Volume[ACCEPTED Original]),0) works on a table visuals, but not in matrix (see above). thanks.
what exactly are you trying to do with the blank values?
It looks like maybe you want them to display as zeros?
Accepted = COALESCE(SUM(Chat_Snowflake[ACCEPTED Original]), 0)
//Mediocre Power BI Advice, but it's free//
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |