Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
87 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |