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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have 3 FactTables and DateDimension Table. I have 3 measures in 3 fact tables such as measure1 ( Table1), measure2 ( Table2), measure 3 (Table3). Now I want to create Trailing 12 months measure in all tables . so , I have created 3 measures such as measure1 TTM, measure2 TTM,measure3 TTM.
Is there any way I can add Column in Date Dimension, so that I can reuse measure. (( basically , I don't want to create measure1 TTM, measure2 TTM, measure3 TTM) instead use measure1,measure2, measure and drag Column from Add Date Dimension.
I'm not sure what column I need to add to Date Dimension so that I can re-use existing measure
Thanks,
Abhiram
Solved! Go to Solution.
@abhiram342 , You can create rolling 12 like
Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-12,MONTH))
Trailing 12 like
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))
Now if want to use different measures in the same kind of calculation like trailing 12, use calculation groups
calculation groups
https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/
@abhiram342 , You can create rolling 12 like
Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-12,MONTH))
Trailing 12 like
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))
Now if want to use different measures in the same kind of calculation like trailing 12, use calculation groups
calculation groups
https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 18 | |
| 14 | |
| 14 |