Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.