Forum Discussion
Gopinath_iyer
Helper II
5 years agohelp in calculation
Hi All, I need you help/suggestion in acheiving the below result. my data has multiple rows for a product with same amount repeating. How would i show the category wise sum of amount but each pro...
Ashish_Mathur
Super User
5 years agoHi,
To your matrix visual, drag Category to the row labels. Write these measures
Measure1 = min(data[Amount])
Measure2 = sumx(summarize(data,data[category],data[product],"ABCD",[measure1]),[abcd])
Drag Measure2 to your visual.
Hope this helps.