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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
admiralman
Advocate II
Advocate II

Use measure within another measure

I have the following measures and I need a new measure called Net that is CurrentYear - PriorYear. Can I create this measure without repeating the formulas of the prior two...something like [CurrentYear] - [PriorYear] or something? All three of these will be used in a matrix with values over 12 months. Thanks.

 

CurrentYear = Format(
CALCULATE(sum(Sheet1[FinancialAmount]), filter(Sheet1, Sheet1[FinancialType]= "Current")),
"$#,##0;($#,##0)"
)

 

PriorYear = Format(
CALCULATE(sum(Sheet1[FinancialAmount]), filter(Sheet1, Sheet1[FinancialType]= "Prior")),
"$#,##0;($#,##0)"
)

1 ACCEPTED SOLUTION
Thyago_Rezende
Resolver I
Resolver I

Hi @admiralman,

 

Try to do VARIABLES within measures like below:

 

% YoY Sales = 

VAR CURRENT_SALES = SUM(SALES)

VAR PRIOR_SALES = CALCULATE(SUM(SALES);SAMEPERIODLASTYEAR(DATES))

Return

DIVIDE ( CURRENT_SALES - PRIOR_SALES; PRIOR_SALES)

 

Best regards,

View solution in original post

3 REPLIES 3
Thyago_Rezende
Resolver I
Resolver I

Hi @admiralman,

 

Try to do VARIABLES within measures like below:

 

% YoY Sales = 

VAR CURRENT_SALES = SUM(SALES)

VAR PRIOR_SALES = CALCULATE(SUM(SALES);SAMEPERIODLASTYEAR(DATES))

Return

DIVIDE ( CURRENT_SALES - PRIOR_SALES; PRIOR_SALES)

 

Best regards,

ricardocamargos
Continued Contributor
Continued Contributor

Hi @admiralman,

 

Once you have created measures you can use them inside others measures. Also you can change the context of them.

 

Thanks,

 

Ricardo

Thanks...I came in today and looked at my question. I think I was trying to do something a little more complicated and didnt address the question correctly. I know you can do that with measures...must have had a brain f@rt. Thanks.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.