Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I'm having a brain spat and can't work this one out. Its actually really simple in concept ...
I have 2 tables, 1 with Pension Rates Per Year (shown below) and another with Financial Years (obviously just a list). I need these to be in separate tables because it is part of a very complex 100 table PPM tool.
[PENSION RATE]
FY: Rate:
2023 10.5%
2024 11%
2025 11.5%
The goal is to calculate the Pension amount based on the timesheets - which are broken down into days per project over multiple years. Currently the rate is hardcoded into a measure "Pension Rate %".
CURRENT MEASURES:
Solved! Go to Solution.
Hi Ross ... yes ... total brainspat like I said ... I did work it out in the end when I sat back and had a coffee ... ended up like this in the real measure.
Hi,@sulleyinoz I am glad to help you.
Hello, @RossEdwards ,thanks for your concern about this issue.
Your answer is excellent!
It's great to see that you were able to ask a question and get proper advice on the forum, and I noticed that you also shared the solution you used. This is great as it facilitates other users on the forum with similar problems to find a solution quickly. You can mark the suggestions you find helpful as solutions, which will help more forum users.
I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Carson Jian
The solution for Daily Pension $ needs to be similar to your solution for Total Resource Pension $. You need to use a SUMX over the VALUES used on your financial years. Something like:
Daily Pension $ = SUMX(
VALUES('Fiscal Years'[Year]),
[Daily Salary Base $] * [Pension Rate %]
)
Hi Ross ... yes ... total brainspat like I said ... I did work it out in the end when I sat back and had a coffee ... ended up like this in the real measure.