Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

Card showing blanks

Hi,

I have looked through many other posts related to a card showing blank but I am still unable to figur eout what ive done wrong.

I have a cloumn that called status that has a few status's. 

I f i have an empty filter, everything is showing fine.

 

However, when I change the filter I get blank

 

How do I make this a zero instead of blank. I tried creating a measure while following similar posts but im still getting blanks.

Thanks in advance

9 Replies

  • v-frfei-msft's avatar
    v-frfei-msft
    Icon for Community Support rankCommunity Support

    Hi Anonymous ,

     

    Please add +0 in your formula to work on it like that.

     

    C = [count of status]+0

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Using 

      CountofStatus = COUNTA(Table1[Status])+0
       
      still shows (Blank)
      • v-frfei-msft's avatar
        v-frfei-msft
        Icon for Community Support rankCommunity Support

        Hi Anonymous ,

         

        kindly share your sample data or Pbix to me if you don't have any Confidential Information. Please upload your files to One Drive for Business and share the link here.

         

    • Anonymous's avatar
      Anonymous
      Not applicable

      HI, This didnt work

  • As per your screenshot, you have selected one value in slicer visual just next to Card. Please unselect that value and then apply the visual level filter.

    Don't forget to give thumbs up 👍 and accept this as a solution if it helped you.
  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion
    Should perhaps create a measure like this:

    Measure =
    VAR __Count = COUNT('Table'[Status])
    RETURN
    IF(ISBLANK(__Count),0,__Count)

    Use that in your Card visual
  • Anonymous 

    Check for other filters on the page.

    Plot this in a table visual and take status and count of status and see which value has how much count. That will help in checking.

     

    Can you share sample data and sample output.