Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello Team,
I am trying to get the Maximum Score achieved by any Employee but it is getting filtered at employee level ,even after applying additional filters with ALL and REMOVEFILTER, there is 1 to many relationship frmo Dim_Employee TO Fact_employee_training
Fact Table:
EmployeeID,ProgramID,SkillID,CertificationID,CompletionDate,Score
Dim_Table
EmployeeID,FullName,Department,Location,JoiningDate,SkillName
Regards,
Ritz.
Solved! Go to Solution.
pls try
MaxTotalScorePerEmployee =
CALCULATE(
MAXX(
ADDCOLUMNS(
SUMMARIZE(
ALL(Dim_Employee),
Dim_Employee[EmployeeID]
),
"TotalScore", CALCULATE(SUM(FactEmployee_Training[Score]))
),
[TotalScore]
),
REMOVEFILTERS()
)
---------------or-------------
MaxTotalScorePerEmployee =CALCULATE(
MAXX(
TOPN(
1,
ADDCOLUMNS(
SUMMARIZE(
ALL(Dim_Employee),
Dim_Employee[EmployeeID]
),
"TotalScore", CALCULATE(SUM(FactEmployee_Training[Score]))
),
[TotalScore],
DESC
),
[TotalScore]
),
REMOVEFILTERS()
)
pls try
MaxTotalScorePerEmployee =
CALCULATE(
MAXX(
ADDCOLUMNS(
SUMMARIZE(
ALL(Dim_Employee),
Dim_Employee[EmployeeID]
),
"TotalScore", CALCULATE(SUM(FactEmployee_Training[Score]))
),
[TotalScore]
),
REMOVEFILTERS()
)
---------------or-------------
MaxTotalScorePerEmployee =CALCULATE(
MAXX(
TOPN(
1,
ADDCOLUMNS(
SUMMARIZE(
ALL(Dim_Employee),
Dim_Employee[EmployeeID]
),
"TotalScore", CALCULATE(SUM(FactEmployee_Training[Score]))
),
[TotalScore],
DESC
),
[TotalScore]
),
REMOVEFILTERS()
)
Thanks a lot, it worked
Can you let me know why we need to add ADD COLUMNS to get the answer ?
Regards,
Ritz
The SUMMARIZE function uses a clustering method. Read more about it here.
https://www.sqlbi.com/articles/differences-between-groupby-and-summarize/
Also, keep in mind that using the REMOVEFILTERS() function ensures that all filters are removed.
Max Score All Employees =
CALCULATE(
MAX(Fact_employee_training[Score]),
REMOVEFILTERS(Dim_Employee)
)
MAX(Fact_employee_training[Score]) finds the highest score in the fact table.
REMOVEFILTERS(Dim_Employee) ignores all filters from the employee dimension, giving the maximum score across all employees regardless of employee-level filters.
If this response was helpful, please accept it as a solution and give kudos to support other community member.
@kipi_bi
Max Score All Employees =
CALCULATE(
MAX(Fact_employee_training[Score]),
ALL(Dim_Employee)
)
This ignores all filters from the employee dimension and returns the maximum score across all employees.
If this answer helped, please click Kudos or mark as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
Thanks but it did not work, max will go to the row level which we would like to avoid
Regards,
Ritz
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 68 | |
| 31 | |
| 27 | |
| 24 |