Forum Discussion
Disable Table show no data rows
Hi everyone,
I am creating a table with Sales vs Forecast by Region. The Region is a filter. My question is when I select a Region, all subregion rows are shown although Sales is blank. All subregion has forecast data. For example, my dashboard metric as follows:
| Subregion | Sales | Forecast |
| SF | 10 | 12 |
| LA | 13 | 14 |
| NYC | 14 |
When I select California, NYC is shows as well. I only wanna see the related subregions are shown in metric. Is there any way to solve this problem? Thanks.
7 Replies
- VasTgMemorable Member
Anonymous
Whats the region for NYC?
- AnonymousNot applicable
It is an example. Assume NYC region is NY. When I select NY, the CA cities are shown either.
- AnonymousNot applicable
Hi, try this:
Create this calculated column:
IncludeExclude = IF(Your_Table[Sales] == BLANK(), "Exclude", "Include")Click on your table, open the Filter pane. Drag in the box "Filters on this visual" the new column created (IncludeExclude) and flag "Include"- AnonymousNot applicable
Thanks for your response. I tried, but not works. The sales in the raw data is no blank. I'd like to no sales data in dashboard is shown.
- VasTgMemorable Member
Anonymous
Is region and Subregion from same table? if not, do you have relationship defined between those tables?