Hi,
I currently have a pivot table with date, name and count. The count is based off of how many times the name shows up in the dataset with that date. If the name doesn’t exist on that date, the pivot table shows blank. Is there a way to show 0?
Hi,
I currently have a pivot table with date, name and count. The count is based off of how many times the name shows up in the dataset with that date. If the name doesn’t exist on that date, the pivot table shows blank. Is there a way to show 0?
Hi @glam,
Here are a couple prior posts in the community that discuss a similar scenario for your review:
Let us know if one of these suggested solutions work for your case or if you have any additional questions.
Hi Brett,
Thanks for reviewing. I have tried using the methods in sent but have no luck. See code below as it seems to work, but still not showing 0 in the pivot table. Any additional thoughts?
ifelse(isNotNull(distinct_countIf({Name},{Country}=“France”)),distinct_countIf({Name},{Country}=“France”),0)
Hi @glam,
So when you add this new calculated field to the pivot table, does it change the visual at all..is anything different occurring in those boxes or is it showing blank as it was prior to the switch?
Re-Reading the first post shared, titled ‘Replace blank/NULL values by 0’..you may need to incorporate ‘toString’.
This may be easier to assist further if you’re able to upload a copy of your analysis, with anonymized data, on to the QuickSight Arena view, that way we can test out a few different scenarios to see what may work in this case!
Thanks Brett - I was able to find a solution - appreciate the help with the above