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