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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I'm trying to convert the power BI report data resource from Import to DirectQuery (Azure SQL). This measure is used to get the latest value for each category.
Measure =
VAR LatestTime = CALCULATE(MAX(Table[Time]), FILTER(Table, Table[Category] =1))
RETURN CALCULATE(AVERAGE(Table[Value]), FILTER(Table, [Category] = 1), FILTER(Table, [Time] = LatestTime))
Solved! Go to Solution.
Hi, @Anonymous
You may try the following measure to see if it helps.
Measure =
VAR LatestTime =
CALCULATE (
MAX ( 'Table'[Time] ),
FILTER (
ALLSELECTED('Table'),
'Table'[Category] = 1
)
)
RETURN
CALCULATE (
AVERAGE ( 'Table'[Value] ),
FILTER (
ALLSELECTED('Table'),
'Table'[Category] = 1&&
'Table'[Time]=LatestTime
)
)
About limitation and considerations in Direct Query mode, please refer to the document .
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You may try the following measure to see if it helps.
Measure =
VAR LatestTime =
CALCULATE (
MAX ( 'Table'[Time] ),
FILTER (
ALLSELECTED('Table'),
'Table'[Category] = 1
)
)
RETURN
CALCULATE (
AVERAGE ( 'Table'[Value] ),
FILTER (
ALLSELECTED('Table'),
'Table'[Category] = 1&&
'Table'[Time]=LatestTime
)
)
About limitation and considerations in Direct Query mode, please refer to the document .
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
VAR LatestTime = CALCULATE(MAX(Table[Time]),All(Table), Table[Category] =1)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 8 | |
| 7 |