Forum Discussion
Future dates showing in chart when future dates do not exist in the table.
- 2 years ago
lowdman87 , make sure you have not used the option "Show Item with no Data" on right click on date hierarchy
Or you can have measures to control
Remove outside range =
var _min = minx(ALLSELECTED(Table), Table[Date])
var _max = maxx(ALLSELECTED(Table), Table[Date])
return
if(max('Date'[Date])>=_min && Max('Date'[Date]) <=_max, [Your Measure] BLANK())
lowdman87 , make sure you have not used the option "Show Item with no Data" on right click on date hierarchy
Or you can have measures to control
Remove outside range =
var _min = minx(ALLSELECTED(Table), Table[Date])
var _max = maxx(ALLSELECTED(Table), Table[Date])
return
if(max('Date'[Date])>=_min && Max('Date'[Date]) <=_max, [Your Measure] BLANK())
Thanks. I did not have the "Show items with no data" checked, but the measure did resolve my issue. Thank you.