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
ROG
Responsive Resident
Responsive Resident

YTD Var measure

Hi guys,

 

I've inherited a report, which has the DAX measure for YTD Variance as per below, which I can understand, but can you please help me to understand the "Vs YTD" and "Vs YTD_2"measure?

 

Can you please tell what's the DAX measure for YTD Variance?

 

YTD KPI Value Var = [KPI Value YTD] - [KPI Value LYTD]

 

[KPI Value YTD] = CALCULATE([KPI Value TY%],DATESYTD('Dim_Date'[Date]))
[KPI Value LYTD] = CALCULATE([KPI Value YTD],SAMEPERIODLASTYEAR('Dim_Date'[Date]))
 
Vs YTD= DIVIDE([YTD KPI Value Var],[KPI Value LYTD])

Vs YTD_2= [KPI Value TY] - CALCULATE(TOTALYTD( [KPI Value TY%]),Dim_Date[DATE]))

Many thanks inadvance! 😊
1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @ROG ,

I created some data:

vyangliumsft_0-1664329776425.png

You can try the following formula:

https://learn.microsoft.com/en-us/dax/varx-p-function-dax

https://learn.microsoft.com/en-us/dax/varx-s-function-dax

Here are the steps you can follow:

1. Create measure.

Measure =
var _today=TODAY()
return
VARX.P(FILTER(ALL('Table'),'Table'[Date]>=DATE(YEAR(_today),1,1)&&'Table'[Date]<=_today),[Amount])

2. Result:

vyangliumsft_1-1664329776429.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

1 REPLY 1
v-yangliu-msft
Community Support
Community Support

Hi  @ROG ,

I created some data:

vyangliumsft_0-1664329776425.png

You can try the following formula:

https://learn.microsoft.com/en-us/dax/varx-p-function-dax

https://learn.microsoft.com/en-us/dax/varx-s-function-dax

Here are the steps you can follow:

1. Create measure.

Measure =
var _today=TODAY()
return
VARX.P(FILTER(ALL('Table'),'Table'[Date]>=DATE(YEAR(_today),1,1)&&'Table'[Date]<=_today),[Amount])

2. Result:

vyangliumsft_1-1664329776429.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

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