March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Guys,
I've been checking the forum and google regarding SUM or AVERAGE last specific number of records.
All solutions i've found is using DATE, but DATE is irrelevant on what i am trying to attain.
What i am really trying to attain is get the AVERAGE of last 7 records regardless of the dates.
Please see example below.
Thanks in advance.
Solved! Go to Solution.
Hi @thollitez,
For your scenario, you should create an index column in Query Editor and create the measure below.
1. Create Index column
2. Create the measure under Modeling tab.
Moving Average last 7 Records = VAR SevenrecordsTotal = CALCULATE ( SUM ( 'table'[UNITS SOLD] ), FILTER ( ALL ( 'table'[Index] ), 'table'[Index] <= MAX ( 'table'[Index] ) && 'table'[Index] >= MAX ( 'table'[Index] ) - 6 ), ALL ( 'table' ) ) VAR Records = CALCULATE ( DISTINCTCOUNT ( 'table'[Index] ), FILTER ( ALL ( 'table'[Index] ), 'table'[Index] <= MAX ( 'table'[Index] ) && 'table'[Index] >= MAX ( 'table'[Index] ) - 6 && 'table'[Index] <> BLANK () ), ALL ( 'table' ) ) RETURN IF ( SUM ( 'table'[Index] ) >= 7, DIVIDE ( SevenrecordsTotal, Records ), BLANK () )
Then you could get the output below.
You also could refer to the attached pbix
Best Regards,
Cherry
Hi @thollitez,
For your scenario, you should create an index column in Query Editor and create the measure below.
1. Create Index column
2. Create the measure under Modeling tab.
Moving Average last 7 Records = VAR SevenrecordsTotal = CALCULATE ( SUM ( 'table'[UNITS SOLD] ), FILTER ( ALL ( 'table'[Index] ), 'table'[Index] <= MAX ( 'table'[Index] ) && 'table'[Index] >= MAX ( 'table'[Index] ) - 6 ), ALL ( 'table' ) ) VAR Records = CALCULATE ( DISTINCTCOUNT ( 'table'[Index] ), FILTER ( ALL ( 'table'[Index] ), 'table'[Index] <= MAX ( 'table'[Index] ) && 'table'[Index] >= MAX ( 'table'[Index] ) - 6 && 'table'[Index] <> BLANK () ), ALL ( 'table' ) ) RETURN IF ( SUM ( 'table'[Index] ) >= 7, DIVIDE ( SevenrecordsTotal, Records ), BLANK () )
Then you could get the output below.
You also could refer to the attached pbix
Best Regards,
Cherry
Thank you very much sir v-piga-msft, it really solved my problem.
You're the best.
Hi @thollitez,
It's glad that we can help. You're welcome.
Best Regards,
Cherry
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
91 | |
74 | |
59 | |
53 |
User | Count |
---|---|
197 | |
115 | |
106 | |
65 | |
61 |