Forum Discussion
Deferred Revenue Model 12 months
- 7 years ago
I figured it out I think. These results are giving me what I expected.
Table = GENERATE(
'Orig Table',
FILTER(
CALENDAR(MIN('Orig Table'[Sales Date]),MAX('Orig Table'[Deferred Sales Date]))
,[Date]>=[Sales Date] && [Date] <= [Deferred Sales Date].[Date] && DAY([Date])=1))This gets the data to only look at the 1st day of the month in the calendar between the dates you've generated.
codyraptor wrote:
Anonymous
I see what it's doing now. It's actually taking the Rev when I create the new table and applying it to each 'day' in the dates. I only need my dates to reflect the month...so just 1/1/2017 for example. I need the dates to reflect a single day and that would fix it. Thoughts?
I figured it out I think. These results are giving me what I expected.
Table = GENERATE(
'Orig Table',
FILTER(
CALENDAR(MIN('Orig Table'[Sales Date]),MAX('Orig Table'[Deferred Sales Date]))
,[Date]>=[Sales Date] && [Date] <= [Deferred Sales Date].[Date] && DAY([Date])=1))
This gets the data to only look at the 1st day of the month in the calendar between the dates you've generated.