Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
98 | |
38 | |
37 |
User | Count |
---|---|
157 | |
120 | |
74 | |
72 | |
63 |