0

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

enter image description here

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

2 Answers2

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] ) )
)

enter image description here

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

enter image description here

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