Forum Discussion
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
Community Support
Hi Anonymous ,
Please add +0 in your formula to work on it like that.
C = [count of status]+0- AnonymousNot applicable
Using
CountofStatus = COUNTA(Table1[Status])+0still shows (Blank)- v-frfei-msft
Community 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.
- Ashish_Mathur
Super User
Hi,
Try this measure
=COUNTA(Data[Status])
Hope this helps.
- AnonymousNot applicable
HI, This didnt work
- Tahreem24
Super User
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
Community 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 - amitchandak
Super User
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.