The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I would like to show a percent of "Total Global" and "Total By Group" in the same column like this example. Is it possible?
(p.s: the last column was manually drawn, I would like to create a measure that make this result possible)
The idea is:
1) Calculate the percent of group´s rows using the Total Sales / Total Global
2) Calculate the percent of country´s rows using the Total Sales / Total by Group
I´m using the AdventureWorks' dataset
Solved! Go to Solution.
Hi,
Try this measure
=IF(HASONEVALUE(Data[Country]),[Total Sales]/[Total by Group],[Total Sales]/[Total Global])
Hope this helps.
Hi,
Try this measure
=IF(HASONEVALUE(Data[Country]),[Total Sales]/[Total by Group],[Total Sales]/[Total Global])
Hope this helps.
You are welcome.
Hi,
Why you just use the
Measure = DIVIDE([Total Sales],[Total Global])
It will works for the 2 cases.
If this helps, I apreciate you give a kudo and mark as the solution. Thanks