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
Herson
Regular Visitor

How to calculate Annualization In Dax? Help needed!

Hi,

I am having trouble calculate Annualized Return on Assets.
The expected calculation is Earning/Asset*(Selected Month/12).
There are two tables: Date Table and Pivoted Financial table shown below.

Date Table.png

Pivoted Financial Table.png


What I hope to achieve is having a dax calcualtion where I could select any given month period the
(Selected month) in the bracket will change accordingly.
ROA(KPI) = [AA_400000]/(Selected month)*12/[AA_500000]

I wonder how this could be done in the dax formula? The output will be a percentage figure.

1 ACCEPTED SOLUTION

If the two tables are related by Date, you can use something like:

 

ROA(KPI) = 
VAR SELECTED_MONTH = MONTH(SELECTEDVALUE(DATE_TABLE[DATE]))

RETURN

[AA_400000]/SELECTED_MONTH*12/[AA_500000]

 

Note that it will only work in a table visual.

View solution in original post

2 REPLIES 2

If the two tables are related by Date, you can use something like:

 

ROA(KPI) = 
VAR SELECTED_MONTH = MONTH(SELECTEDVALUE(DATE_TABLE[DATE]))

RETURN

[AA_400000]/SELECTED_MONTH*12/[AA_500000]

 

Note that it will only work in a table visual.

Hi filipeoliveira,

 

Thanks for looking into the problem. It worked!

 

Laurence

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