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
I have created a line graph which is filtered using a date range picker. . And the chart is getting dynamially changed when we are back dating the values. Aditionally I needed an average value for Last year for the below chart. That means the dark blue color line. As you can see, the average is a constant line.
Avg sales = CALCULATE( IFERROR(
[LY Sales]/[Measurecal],
BLANK()
), ALL('Date'[Date]))
LY Sales = CALCULATE([Sales], SAMEPERIODLASTYEAR('Date'[Date]))
Measurecal =
VAR StartDate = DATE ( YEAR(MIN('Date'[Date])),MONTH(MIN('Date'[Date])), DAY(MIN('Date'[Date])) )
VAR EndDate = DATE ( YEAR(MAX('Date'[Date])),MONTH(MAX('Date'[Date])), DAY(MAX('Date'[Date])) )
return DATEDIFF(StartDate,EndDate,DAY)
Below Is the chart that gives incorrect figure.
. when we select the date period Jan 7 2021 to Nov 18 2021, the avrage should be 1172 not 989.13. And the average value constant line should changed dynamically when we change the date range. Can you pls help? I have attached the workbook
https://drive.google.com/file/d/12cItFy_wdfWHsbg0qLry93pFBd88LujY/view?usp=sharing
thanking you in advance
Solved! Go to Solution.
Hi
I think it is due to use ALL function, that will clear all Date filter in your whole page. So, try this one
Avg sales = CALCULATE( IFERROR(
[LY Sales]/[Measurecal],
BLANK()
), ALLSELECTED('Date'[Date]))
Hi, this maybe for your Date format, make sure Date column in your two table is same format.
In the line visual, you choose "Continous".
Thankyou very much. I think its now working. Means alot. and you saved the day.. Lets close this off.
Thank you again
Hi
I think it is due to use ALL function, that will clear all Date filter in your whole page. So, try this one
Avg sales = CALCULATE( IFERROR(
[LY Sales]/[Measurecal],
BLANK()
), ALLSELECTED('Date'[Date]))
@HoangHugo Hello,
Thanks for the reply. No its not working.
When I turned that one to a table,
What could be the issue for this? The total value need to be populated in every row.
Did you follow me? only need change ALL to ALSELECTED.
See updated file, link below
https://drive.google.com/file/d/1eykhH1Md7m7jA-JeofZNVzjXkWt8JpRj/view?usp=sharing
Hello @HoangHugo
Thankyou.
But this is what I get.
Why this kind of things happennig?
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 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |