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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello , im working in Power BI with dynamics 365, and i have some accounts that are parent from another in one table, and I have the total sales for the parent account in another tabler and the % of sales of the child for the total of the parents (the % is on the account table). I Have to multiply the partent sale by the %, but the problem is that same account dont have subsidiary and in that case de % is in blank, is any formula for that?
The problem is that i Have an ID for the account and the relationship of the parent with another column. And the sale table only have the name (no the id).
I made this caluculation
Ventas Calculado x % = CALCULATE(SUM('Ventas 17-18'[Ventas Total USD]))
But when i do that a lot of account bring me the same number (493174)
i made the following formula:
Ventas Calculado x %2 =
VAR current_account =
SELECTEDVALUE ( Cuentas[accountid] )
VAR _parent =
CALCULATETABLE (
VALUES ( Cuentas[_parentaccountid_value] ),
FILTER ( ALL ( Cuentas), [accountid] = current_account )
)
RETURN
CALCULATE (
SUM ( 'Ventas 17-18'[Ventas Total USD] ),
FILTER ( ALL ( Cuentas ), [accountid] IN _parent )
)
But the results were not ok. Look:
I attach a pbix example:
https://wetransfer.com/downloads/a39ec4dd023cfc76f3a4fb89ed3970ea20180215195946/df40b32e8e009e67382d...
Thanks
Juan Vido
You may try to use LOOKUPVALUE Function to add calculated column first.
Hello, @v-chuncz-msft. Thanks for your answer.
But I Have the following problem:
Thanks,
Best Regards