I've defined a measure which gives me a chart of the forecast for the next 4 months based off todays date. The problem is if there is no forecast, the pivot table shows nothing. These are schedule items so there is nothing that exists not the value is 0. I've tried to modify the formula and it gets rid of my 4 month filter and shows 0 for every month of the year. Any ideas?
Not Started:=calculate('Schedule'[Notstarted],FILTER(all(BasicCalendarUS),BasicCalendarUS[DateKey]>='Schedule'[Start of Period]&&BasicCalendarUS[DateKey]<='Schedule'[End of Period]))
Start of period = eomonth(today(),-1)+1 or the first date of the current month.
End of period = start of period + 4
Notstarted is just activities which are complete.
Not Started:=calculate('Schedule'[Notstarted],FILTER(all(BasicCalendarUS),BasicCalendarUS[DateKey]>='Schedule'[Start of Period]&&BasicCalendarUS[DateKey]<='Schedule'[End of Period]))
Start of period = eomonth(today(),-1)+1 or the first date of the current month.
End of period = start of period + 4
Notstarted is just activities which are complete.