Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi everyone,
I am looking to calculate average daily sales in cards (shown below) based on the time slicers selected:
Currently, my measure is:
Solved! Go to Solution.
try this measure
AvgDailySales =
DIVIDE(
SUM('BSF Files'[12. Sum of Extended Price]),
COUNTROWS(VALUES('Fiscal Calendar'[Date]))
)
Hi @dbarseg1 ,
Thanks @aduguid for the quick reply. Please allow me to provide additional insights:
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
Avg sales = AVERAGEX(ALLSELECTED('BSF Files'),[12. Sum of Extended Price])
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dbarseg1 ,
Thanks @aduguid for the quick reply. Please allow me to provide additional insights:
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
Avg sales = AVERAGEX(ALLSELECTED('BSF Files'),[12. Sum of Extended Price])
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Neeko,
Thank you for the images and examples. By showing me the relationships in your tables, I understood that the issue was more with my calendar data than the formula. I changed what columns were shown in my slicers to be corresponding to the Fiscal Year calendar and this fixed the calculation. I followed the connection you made in your example data.
Appreciate your help!!
try this measure
AvgDailySales =
DIVIDE(
SUM('BSF Files'[12. Sum of Extended Price]),
COUNTROWS(VALUES('Fiscal Calendar'[Date]))
)
Thank you! Once I fixed my calendar data relationship, this formula did the same thing as my prior formula. I sincerely appreciate your prompt reply!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
9 | |
9 | |
6 | |
5 |
User | Count |
---|---|
19 | |
18 | |
9 | |
9 | |
8 |