In my Power BI Dashboard table after creating dashboard if some row values are empty then how to make it as 0 instead of Null or Blank value
Asked
Active
Viewed 4,449 times
2 Answers
0
After done R & D i found an solution, I have created measure and populated in Dashboard page instead of directly assigning the column value. The measure which i created is
Expenses Value =
IF (
CALCULATE ( SUM ( Expenses[Amount] ) ) = BLANK (),
0,
CALCULATE ( SUM ( Expenses[Amount] ) )
)

KARTHIKEYAN.A
- 18,210
- 6
- 124
- 133
0
If date field is missing then
Date =
VAR MCON = FORMAT(TODAY(),“dd/M/yyyy")
RETURN TF(
SELECTEDVALUE('New Registration'[$1]) = BLANK(),
MCON,
SELECTEDVALUE('New Registration'[$1])
)
Result

KARTHIKEYAN.A
- 18,210
- 6
- 124
- 133