Forum Discussion
diskovered
Helper III
7 years agoPrevious quarter report level filter for 3 different data sources
I have three data sources and linked all three using date (year, quarter, month). I'm curious how do I go about using previous quarter in my page filter that would apply to all 3 data sources. Th...
- 7 years ago
Hi diskovered
One workaround is to create measure to show values of previous quarter.
for example, create measures
current_quarter = COUNT(Table1[Date]) previous_quarter = CALCULATE(COUNT('Table1'[Date]),PREVIOUSQUARTER('date table'[Date]))Best Regards
Maggie
v-juanli-msft
Community Support
7 years agoHi diskovered
One workaround is to create measure to show values of previous quarter.
for example, create measures
current_quarter = COUNT(Table1[Date])
previous_quarter = CALCULATE(COUNT('Table1'[Date]),PREVIOUSQUARTER('date table'[Date]))
Best Regards
Maggie
diskovered
Helper III
7 years agoPerfect, I think I'll settle with this workaround. Thank you