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! Request now
Hi there
I have a table set up like this
I wish to create a table visual which takes the sum of the most recent values for each ID for every rounded date time. So the desired output would look like this
I am using direct query mode.
Any help is much appreciated.
Thanks
Hi,
I assume the table name is "Data".
Please try the below DAX measure if it suits your requirement.
Expected result dax measure: =
SUMX (
WINDOW (
-1,
ABS,
-1,
ABS,
SUMMARIZE ( Data, Data[ID], Data[DateTime], Data[Value] ),
ORDERBY ( Data[DateTime], ASC ),
,
PARTITIONBY ( Data[ID] )
),
Data[Value]
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 74 | |
| 50 | |
| 48 | |
| 46 |