Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello I have an SQL query as follows :
SELECT a.School, SUM(a.Value) AS Value
FROM(
select School,max(Value) AS Value from table
group by FileId,School
) a
group by School
How do I translate this into DAX ?
Solved! Go to Solution.
@AnonymousIt's because measure returns table (just like your SQL query). To return single value change measure:
Measure=var tempTable=ADDCOLUMNS(SUMMARIZE('Table','Table'[FileId],'Table'[School]),"max_value",CALCULATE(MAX('Table'[Value])))
return CALCULATE(SUMX(tempTable,[max_value]))
@Anonymous Try something like this:
Measure=var tempTable=ADDCOLUMNS(SUMMARIZE('Table','Table'[FileId],'Table'[School]),"max_value",CALCULATE(MAX('Table'[Value])))
return ADDCOLUMNS(SUMMARIZE(tempTable,[School]),"sum_value",CALCULATE(SUMX(tempTable,[max_value])))
Hello, I have created a table graph with 2 columns School and the measure you created. I received the following error :
@AnonymousIt's because measure returns table (just like your SQL query). To return single value change measure:
Measure=var tempTable=ADDCOLUMNS(SUMMARIZE('Table','Table'[FileId],'Table'[School]),"max_value",CALCULATE(MAX('Table'[Value])))
return CALCULATE(SUMX(tempTable,[max_value]))
The measure worked perfectly, but can you please show me how to add a WHERE clause in it ?
SELECT a.School, SUM(a.Value) AS Value
FROM(
select School,max(Value) AS Value from table
-- New
WHERE Statut LIKE '%abc%'
--End New
group by FileId,School
) a
group by School
Thanks a lot man you are a life saver
@Anonymous Replace first parameter of SUMMARIZE function ('Table') with FILTER('Table',SEARCH("abc",'Table'[Statut],1,0)) :
Measure=var tempTable=ADDCOLUMNS(SUMMARIZE( FILTER('Table',SEARCH("abc",'Table'[Statut],1,0)),'Table'[FileId],'Table'[School]),"max_value",CALCULATE(MAX('Table'[Value])))
return CALCULATE(SUMX(tempTable,[max_value]))
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 65 | |
| 31 | |
| 26 | |
| 26 |