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.
I have my base data something like this and finally would want to show a graph with sales_area and value highlighted in yellow.
The values are QtyperHour=divide(sum(qty),sum(tothours))
I have tried to use nested group up with divide, can someone pease share how to use nested group by/summarize with divide.
Solved! Go to Solution.
Hi @rishic,
Actually, you don't need the function "Summarize". Please try out the formula below.
Measure = DIVIDE ( SUM ( Table1[Pur_quantity] ), SUMX ( VALUES ( 'Table1'[Tot_Hours_Spent] ), [Tot_Hours_Spent] ) )
Best Regards,
Dale
Hi @rishic,
Actually, you don't need the function "Summarize". Please try out the formula below.
Measure = DIVIDE ( SUM ( Table1[Pur_quantity] ), SUMX ( VALUES ( 'Table1'[Tot_Hours_Spent] ), [Tot_Hours_Spent] ) )
Best Regards,
Dale