Skip to main content
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
feralvarez994
Helper II
Helper II

Calculate last amount per hour

Hi everyone! I need to get the last amount (MONTO column) of every BANK (BANCO/ENTIDAD column) by date and time (FECHA Y HORA Column).

I have a dax with CALCULATE with LASTDATE but it returns the first amount of the last day at the earlier hour, example if i have a value from today morning and another row with today afternoon, it only gets the first value(morning one) instead of the afternoon one

I need it to return the last value also having in consideration the hour

 

Can someone help me please? My dataset looks like this

feralvarez994_0-1653339124503.png

 

Thanks everyone

 

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi @feralvarez994,

 

You can use this code to get the result:

Measure =
VAR _S =
    SUMMARIZE (
        'Table',
        [BANCO/ENTIDAD],
        "LAST", CALCULATE ( SUM ( 'Table'[MONTO] ), TOPN ( 1, 'Table', [FECHAYHORA], DESC ) )
    )
RETURN
    SUMX ( _S, [LAST] )

vchenwuzmsft_0-1653558869471.png

 

Pbix file in the end you can refer.

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@feralvarez994 , Create a new column

Date hour = datevalue([Date Time]) + time(hour([Date Time]),0,0)

 

 

a new measure =

calculate(lastnonblankvalue(Table([Date Time], sum(table[Value]), allexcept(Table, Table[Date hour] ) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
v-chenwuz-msft
Community Support
Community Support

Hi @feralvarez994,

 

You can use this code to get the result:

Measure =
VAR _S =
    SUMMARIZE (
        'Table',
        [BANCO/ENTIDAD],
        "LAST", CALCULATE ( SUM ( 'Table'[MONTO] ), TOPN ( 1, 'Table', [FECHAYHORA], DESC ) )
    )
RETURN
    SUMX ( _S, [LAST] )

vchenwuzmsft_0-1653558869471.png

 

Pbix file in the end you can refer.

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (25)