Forum Discussion
(Blank)? Null? data in data pane
Hi Anonymous
The Blank() is coming from calculations made on columns, when there is no data it returns (Blank).
2 ways : Either you fil up the blank cells of the columns with 0 in Power Query or (which is better and cleaner) is to create measures for those cards and add 0 to it. Exemple : External = CALCULATE(SUM('TableName(ColumnExternal)')) + 0
- Anonymous3 years agoNot applicable
Hi Amine,
I tried both but still showing (blank).
I checked the column and they are all filled with '0' and there is no blank or null cells in the table.
Also tried DAX to remove the (blank)s, but not working....
- aj19733 years agoCommunity Champion
did you add the 0 tou your measures?
- Anonymous3 years agoNot applicable
Hi,
I did, The table name is 'All Leased Labor Data' and the column name is [Leased Labor FTE], so I created measure as
CALCULATE(SUM('All Leased Labor Data'[Leased Labor FTE])) + 0