Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi!
Just wondering if this is possible.
I am attempting to sum the Category Rank Pts by Employee.
Category Rank Pts is a measure.
The end result:
Hi, @Anonymous
Could you please tell me whether your problem has been solved?
You can also take a try formula as below:
Measure_category rank final =
VAR tab =
    ADDCOLUMNS (
        SUMMARIZE ( 'Table', 'Table'[Appr Header], 'Table'[Employee] ),
        "Category Rank final", [Category Rank final]
    )
RETURN
    SUMX ( tab, [Category Rank final] )
or
Measure_category rank final = SUMX(VALUES('Table'[Appr Header]),[Category Rank final])
If it doesn't meet your requirement,please share your formula of "Category Rank Pts " for further research.
Best Regards,
Community Support Team _ Eason
Hi,
Try this measure
=SUMX(Data,[Category rank final])
Hi.
I was looking for the formula for the Category Rank Final as a sum of the Category Rank Pts measures by employee.
I added the Category Rank Pts measure in the thread.  Thanks.
Hi, @Anonymous
This is really strange, I may need you to provide a sample pbix file for further research.
Best Regards,
Community Support Team _ Eason
Hi,
Try this measure
SUMX(Data,[Category rank pts])
Hi @Anonymous
use this measure
Category Rank Final_BIS =
VAR _EmployeeID = SELECTEDVALUE('TABLE'[Employee])
VAR _Result = CALCULATE(SUM('TABLE'[Category Rank Final]) , 'TABLE'[Employee] = _EmployeeID)
RETURN
_Result
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.