Forum Discussion
Changing Time Dimension changes the data presentation incorrectly.
- 4 years ago
Anonymous , if you have already joined your date of the table with the date of calendar, then you do not need to use min and max to force the range
This should work
Calculate(DISTINCTCOUNT(vwJiraDistributionByQuarter_MODEL[IssueKey])
if needed add filter
Flows On Date =
VAR MAXDate=MAX(vwFiscalCalendar[CalendarDate])
VAR MINDate= MIN(vwFiscalCalendar[CalendarDate])
Return
Calculate(DISTINCTCOUNT(vwJiraDistributionByQuarter_MODEL[IssueKey]),
filter( vwJiraDistributionByQuarter_MODEL , vwJiraDistributionByQuarter_MODEL[CreatedOn]>=MINDate,
vwJiraDistributionByQuarter_MODEL[CreatedOnNext]<=MAXDate)
)Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5bd4
Anonymous , if you have already joined your date of the table with the date of calendar, then you do not need to use min and max to force the range
This should work
Calculate(DISTINCTCOUNT(vwJiraDistributionByQuarter_MODEL[IssueKey])
if needed add filter
Flows On Date =
VAR MAXDate=MAX(vwFiscalCalendar[CalendarDate])
VAR MINDate= MIN(vwFiscalCalendar[CalendarDate])
Return
Calculate(DISTINCTCOUNT(vwJiraDistributionByQuarter_MODEL[IssueKey]),
filter( vwJiraDistributionByQuarter_MODEL , vwJiraDistributionByQuarter_MODEL[CreatedOn]>=MINDate,
vwJiraDistributionByQuarter_MODEL[CreatedOnNext]<=MAXDate)
)
Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5bd4