Forum Discussion
income statement matrix blank value issue
I have build a income statement in matrix with different measures. The thing is in the column outcome last year have a bunch of blank rows. And to get rid of the blanks dosen't work with ISBLANK statement due it also replace the net income result with 0 to.
So what kind of measure it is I have to make to look like below?
As you can see blow how I want it look like
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
1 Reply
- v-lid-msftCommunity Support
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