Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

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 stat...
  • v-lid-msft's avatar
    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