The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
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.
Solved! Go to 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.
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
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |