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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I have duplicate values and I wanted to sum only distinct values so I used the below formual which was showing correct results if shown based on the week values but as total it shows wrong total as shown in picture.
It would be quite helpful if I can get the correct total along with the same values against week which are correct.
Thank you
Solved! Go to Solution.
@Junaid11 , it should be like
Sample =
SUMX (
SUMMARIZE ('Remedial Tracker','Remedial Tracker'[NO.] ,'Remedial Tracker'[week] , 'Remedial Tracker'[RS Attended] ),
'Remedial Tracker'[RS Attended]
)
or
Sample =
SUMX (
SUMMARIZE ('Remedial Tracker','Remedial Tracker'[week] , 'Remedial Tracker'[RS Attended] ),
'Remedial Tracker'[RS Attended]
)
@Junaid11 , it should be like
Sample =
SUMX (
SUMMARIZE ('Remedial Tracker','Remedial Tracker'[NO.] ,'Remedial Tracker'[week] , 'Remedial Tracker'[RS Attended] ),
'Remedial Tracker'[RS Attended]
)
or
Sample =
SUMX (
SUMMARIZE ('Remedial Tracker','Remedial Tracker'[week] , 'Remedial Tracker'[RS Attended] ),
'Remedial Tracker'[RS Attended]
)