Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Changing Time Dimension changes the data presentation incorrectly.

Hi,

I have a project status table and a date table and I am looking for the active projects between two dates.  The measure works fine if I just use the date hierachy but I want it to show is a year quarter combo 2022-Q1, 2022-Q2, etc.

 

Changing the x axis from the date hierarchy to a quarter date combo, causes the quarterly counts to be incorrect.

 

 

The measure i am using is 

Flows On Date =
VAR MAXDate=MAX(vwFiscalCalendar[CalendarDate].[Date])
VAR MINDate= MIN(vwFiscalCalendar[CalendarDate].[Date])
Return
Calculate(DISTINCTCOUNT(vwJiraDistributionByQuarter_MODEL[IssueKey]),
vwJiraDistributionByQuarter_MODEL[CreatedOn]>=MINDate,
vwJiraDistributionByQuarter_MODEL[CreatedOnNext]<=MAXDate
)

This is showing the correct counts.This is showing the correct counts.This is not showing the correct counts and is dupilicating everything for every periodThis is not showing the correct counts and is dupilicating everything for every period

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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-bd52912a5b...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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-bd52912a5b...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.