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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
icturion
Resolver II
Resolver II

exclude future dates from measure

Hi,

 

I am trying to graph the performance of the current year compared to a year earlier in that period. I then included a line showing the difference in percentage. The problem I run into is that the percentage for the future is shown in the chart as 0%, with the result that my yearly average is also too low. How can I ensure that the percentage is not calculated for the period to come?

 

example graph.JPG

 

Im yousing the following measures:

  • Uitgevoerd = (countrows(table)
  • Uitgevoerd PY = calculate([# total AC], DateADD('calendartable'[datecolumn].[Date], -1, YEAR))
  • # vs PY = DIVIDE([Uitgevoerd] , [Uitgevoerd PY], 0)

hopefully someone knows the solution

1 ACCEPTED SOLUTION

thanks for your response, it pointed me in the right direction. I solved it like this now:

 

Measure 2 =
VAR LastActualDate =
LASTNONBLANK (
'table'[datumcolumn].[Maand],
[uitgevoerd]
)
RETURN
CALCULATE (
DIVIDE ( [Uitgevoerd], table[Uitgevoer PY], 0 ),
LastActualDate
)

View solution in original post

2 REPLIES 2
itchyeyeballs
Impactful Individual
Impactful Individual

Hi,

 

We use a measure like this:

 

Measure2 =
CALCULATE (
[Measure1],
FILTER (
ALL ( 'DateTable'[DateCol]),
'DateTable'[DateCol] <= MAX ( ( 'DateTable'[DateCol]) )
)
)+0

thanks for your response, it pointed me in the right direction. I solved it like this now:

 

Measure 2 =
VAR LastActualDate =
LASTNONBLANK (
'table'[datumcolumn].[Maand],
[uitgevoerd]
)
RETURN
CALCULATE (
DIVIDE ( [Uitgevoerd], table[Uitgevoer PY], 0 ),
LastActualDate
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors