Forum Discussion

Otto_Luvpuppy's avatar
Otto_Luvpuppy
Icon for Helper II rankHelper II
4 years ago
Solved

Showing Filtered Values and Blanks

Hi, I'm pretty sure I'm doing something stupid here but can't figure it out. I have a table that has a Status Column. I have another table, related through ID, that has the Status and the Date that ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  Otto_Luvpuppy ,

    I created some data:

    When the value is blank, Power BI automatically hides the value that is blank::

    The first method:

    You can check [status] – Show items with no data.

    A blank value is then displayed:

    The second method:

    You can create a Measure and replace Blank with 0.

    Create measure:

    Measure 2 =
    IF(
        [Measure] = BLANK() ,0,[Measure])

    If you need pbix, please click here.

    Showing Filtered Values and Blanks.pbix

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly