Forum Discussion
income statement matrix blank value issue
- 7 years ago
Hi Anonymous ,
If the measure return a text , it may be a blank string, you can use the following DAX to try to make it return 0.
Measure = VAR r = PREVIOUS_RESULT_OR_CALCULATE RETURN IF ( r = "" || ISBLANK ( r ), 0, r )If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
BTW, the column name you draw black still can be seen clearly, if it contains any confidential information, we suggest you to delete the picture ASAP.
Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more
Hi Anonymous ,
If the measure return a text , it may be a blank string, you can use the following DAX to try to make it return 0.
Measure =
VAR r = PREVIOUS_RESULT_OR_CALCULATE
RETURN
IF ( r = "" || ISBLANK ( r ), 0, r )If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
BTW, the column name you draw black still can be seen clearly, if it contains any confidential information, we suggest you to delete the picture ASAP.
Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more