Some visuals, e.g. the line chart, doesn't show nice graphs in case of blanks. Instead of adding a measure in the data model just to fix this, it would be better if it was possible to use a quick measure
%Value (With No Blanks) =
VAR Value=[ValueThatCanBeBlank]
RETURN(
IF(
NOT(ISBLANK(Value));
Value;
0 //Or any other value to replace a blank
)
)