The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Can anyone help me with getting the % subtotals here to equal 100% with the formula I have? Looks like the actual percent of subtotal I have is working, but need to have the areas the arrows are point to add to 100% not what I have.
Thanks!
This worked, thank you!
P.S. you can use ISINSCOPE with the IF statement, if you have more than one subtotal group.
@Razorbx13 Give this a try:
% of Account Group =
DIVIDE (
SUM ( 'GL Transactions'[Amount] ),
CALCULATE (
SUM ( 'GL Transactions'[Amount] ),
ALL ( 'GL Transactions'[Account Nbr] )
)
)