Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Good afternoon everyone!
I hope you can help me.
I need PowerBI to show me the average of the last 7 days starting on Tuesday.
From Tuesday the price changes are made.
I could not find any formula that takes me the average of the last 7 days starting from Tuesday
Example
In return a table or Matrix with a row showing a result
Search Forums, Internet Videos, I asked for help from other colleagues but couldn't get it.
I hope you will help me,
Best regards!
Solved! Go to Solution.
After two weeks of trial and error, you finally helped me and I was able to achieve it.
You are a Hero, Thank you very much ! 😁
Last query, because adding a column with an "@" is the only thing I didn't understand
Hi,
Please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
One of ways to achieve this is to create a proper calendar table like the attached pbix file, that DayOfWeek number starts from Tuesday (1) and ends on Monday (7).
I hope the below sample can provide some ideas on how to create a solution for your datamodel.
Avg last 7 days start from Tue: =
AVERAGEX (
ADDCOLUMNS (
FILTER (
ALL ( 'Calendar' ),
'Calendar'[End of Week] = MAX ( 'Calendar'[End of Week] )
&& 'Calendar'[Day of Week] <= MAX ( 'Calendar'[Day of Week] )
),
"@qty", [Qty measure:]
),
[@qty]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
After two weeks of trial and error, you finally helped me and I was able to achieve it.
You are a Hero, Thank you very much ! 😁
Last query, because adding a column with an "@" is the only thing I didn't understand
Hi,
Thank you for your feedback.
In the formula, @ has no meaning. It is just my habit that I learned from some other experts. When I try to create a column in a virtual table inside DAX formula, I usually name it with @, and the reason is not to be confused by other existing measures or other existing columns (Other existing measures come with table name, so the main purpose is not to be confused by other exising measures).
I hope this helps.
Thanks.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
86 | |
85 | |
68 | |
49 |
User | Count |
---|---|
139 | |
112 | |
104 | |
64 | |
60 |