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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello, I have a table that looks like the one attached. I want to add an additional column that will spit out a number for the total time divided by the total for that month. For example in the first row, I would want the new column to be 7089/65075 (sum of all total times for month number 1). Thank you!
Solved! Go to Solution.
Hi @mollig3
Is what you show a table or a table visual? Do you want a calculated column or a measure?
Are the fields Total_time_c and Job Type measures? Are they summarizations of the fields or just the plain values? You'd need to give more details.
If it is what I think it is, you can create a measure like:
Measure = DIVIDE ( SUM ( Table1[Total_time_c] ), CALCULATE ( SUM ( Table1[Total_time_c] ), ALLEXCEPT ( Table, Table1[MonthNrR.] ) ) )
Hi @mollig3
Is what you show a table or a table visual? Do you want a calculated column or a measure?
Are the fields Total_time_c and Job Type measures? Are they summarizations of the fields or just the plain values? You'd need to give more details.
If it is what I think it is, you can create a measure like:
Measure = DIVIDE ( SUM ( Table1[Total_time_c] ), CALCULATE ( SUM ( Table1[Total_time_c] ), ALLEXCEPT ( Table, Table1[MonthNrR.] ) ) )