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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
KrisD
Helper II
Helper II

How to use timestamp in moving average calculation

Hi!

 

I'm trying to do a moving average based on the last N rows but nothing I've tried seems to work. 

When I do the average calculation I'm trying to use the current row minus N rows, but the code does not consider the time-part of the timestamp, only the day (in this case the 16th). 

How can I get the full timestamp into the calculation in order to get the moving average to work?

 

The DAX:

Wagon Ore Normal Load AVG MA7 timestamp =
IF (
   NOT ISBLANK ( [Wagon Ore Normal Load AVG] ),
       CALCULATE ( [Wagon Ore Normal Load AVG],
             FILTER (
                  ALLSELECTED ( 'F WAGON CYCLE' ),
                  'F WAGON CYCLE'[TRAIN_CYCLE_TIMESTAMP] <= MAX ( 'F WAGON CYCLE'[TRAIN_CYCLE_TIMESTAMP] ) &&
                  'F WAGON CYCLE'[TRAIN_CYCLE_TIMESTAMP] >= MAX ( 'F WAGON CYCLE'[TRAIN_CYCLE_TIMESTAMP] ) -2 ) //The minus N makes no difference
        )
)
 

As you can see in the image below, the MAX considers the row on a day level. 

 

släng.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @KrisD ,

Here are the steps you can follow:

Create measure.

Wagon Ore Normal Load AVG MA7 timestamp =
var _1=MAX('Table'[TRAIN_CYCLE_TIMESTAMP])
return
IF(
    not ISBLANK(MAX('Table'[Wagon Ore Normal Load AVG])),
AVERAGEX(
    FILTER(
        SUMMARIZE(ALLSELECTED('Table'),
        'Table'[TRAIN_CYCLE_TIMESTAMP],
        "Avg value",AVERAGE('Table'[Wagon Ore Normal Load AVG])),
        'Table'[TRAIN_CYCLE_TIMESTAMP]<=_1),
        [Avg value])
)
Max timestamp = MAX('Table'[TRAIN_CYCLE_TIMESTAMP])

vyangliumsft_0-1642060070082.png

Generally speaking, the current value displayed by Max(), the format is also the current value, you can select [Max timestamp] - Measure tools - Fromat - to change to the format in the picture.

vyangliumsft_1-1642060070086.png

 

Best Regards,

Liu Yang

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

4 REPLIES 4
Anonymous
Not applicable

Hi  @KrisD ,

Here are the steps you can follow:

Create measure.

Wagon Ore Normal Load AVG MA7 timestamp =
var _1=MAX('Table'[TRAIN_CYCLE_TIMESTAMP])
return
IF(
    not ISBLANK(MAX('Table'[Wagon Ore Normal Load AVG])),
AVERAGEX(
    FILTER(
        SUMMARIZE(ALLSELECTED('Table'),
        'Table'[TRAIN_CYCLE_TIMESTAMP],
        "Avg value",AVERAGE('Table'[Wagon Ore Normal Load AVG])),
        'Table'[TRAIN_CYCLE_TIMESTAMP]<=_1),
        [Avg value])
)
Max timestamp = MAX('Table'[TRAIN_CYCLE_TIMESTAMP])

vyangliumsft_0-1642060070082.png

Generally speaking, the current value displayed by Max(), the format is also the current value, you can select [Max timestamp] - Measure tools - Fromat - to change to the format in the picture.

vyangliumsft_1-1642060070086.png

 

Best Regards,

Liu Yang

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

 

Hello, 

I use the following solution, since I can declare how many timestamps/connected values I want to use for the moving average. It also considers the time part in the time/date formatted date column.

Moving Average =

VAR CurrentDate = MAX(DataTable[StartDate])

VAR PreviousDates =

                       FILTER( ALLSELECTED(DataTable),

                       DataTable[StartDate] <= CurrentDate

                       )

VAR RankedDates =

                      ADDCOLUMNS(

                                PreviousDates,

                                "Rank", RANKX(PreviousDates, DataTable[StartDate], , DESC, Dense)

               )

VAR FilteredDates =

                      FILTER(

                                  RankedDates,

                                  [Rank] <= 3

                )

VAR SumValues =

                      SUMX(

                                FilteredDates,

                                DataTable[Value]

                )

VAR CountValues =

                     COUNTROWS(FilteredDates)

RETURN

IF(

          CountValues > 0,

          DIVIDE(SumValues, CountValues)

)

 

Best regards 

KW

amitchandak
Super User
Super User

@KrisD , Create a rank column and try

Rank = rankx('F WAGON CYCLE' ,'F WAGON CYCLE'[TRAIN_CYCLE_TIMESTAMP],,asc,dense)

 

 

Wagon Ore Normal Load AVG MA7 timestamp =
IF (
NOT ISBLANK ( [Wagon Ore Normal Load AVG] ),
CALCULATE ( [Wagon Ore Normal Load AVG],
FILTER (
ALLSELECTED ( 'F WAGON CYCLE' ),
'F WAGON CYCLE'[Rank] <= MAX ( 'F WAGON CYCLE'[Rank] ) &&
'F WAGON CYCLE'[Rank] >= MAX ( 'F WAGON CYCLE'[Rank] ) -2 ) //The minus N makes no difference
)
)

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

Hi and thanks for your response!

I have on purpose excluded the use of calculated columns in this case. In case I get no solution ideas with the use of just a measure I'll consider using your rank method. 

 

I'll accept this as solution in case nothing new comes up in a couple of days, but would of course like to know why for instance MAX or SELECTEDVALUE do not return the complete timestamp and how this can be achieved.  

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.