Forum Discussion
ytd multipe years
- 7 years ago
solved by searching the community YTD untill today thanks to OwenAuger
YTD Values till last orderdate = VAR LOD = [Last Order Date] VAR TodayMonth = MONTH ( LOD ) VAR TodayDay = DAY ( LOD ) VAR YearDateFilter = GENERATE ( VALUES ( 'date table'[year] ); VAR TodayInCurrentYear = DATE ( 'date table'[year] ; TodayMonth; TodayDay ) RETURN CALCULATETABLE ( DATESYTD ( 'date table'[Date] ); TREATAS ( { TodayInCurrentYear }; 'date table'[Date] ) ) ) RETURN CALCULATE ( DISTINCTCOUNT(Blad1[orderno]); KEEPFILTERS ( YearDateFilter ) )and
YTD-PY values till last order date = CALCULATE([YTD Values till last orderdate];SAMEPERIODLASTYEAR('date table'[Date]))
Hi Frank,
thanks for reply!
Your sample-date only have data in one month..... My data containts lots of daily data / transactions from 2011 till today.
What I need is to show the data of previouws years ONLY for exact the same period.
So I can compare the selected periods clearly.
e.g.:
2015 2016 2017 2018
jan 100 150 160 100
feb 250 275 300 100
mar 300 325 400 200
apr 100 90 50 100
may 200 210 260 200
jun 150 175 100 50
jul 200 225 300 250
aug 50 75 50 100
sep 50 40 100 150
oct 50 20 100 25
nov 100 150 50
dec 200 200 75
total: 1.650 1.935 1.945 1.275
total: 1.350 1.585 1.820 1.275
now previous years shows data of whole year....
(i'm sorry, I made an exampe file but can not attach it here)
- BoBBie7 years agoFrequent Visitor
Hi Frank,
Data:
https://www.dropbox.com/s/9zxtoauleo7v2cb/test%20date%20-%20ytd.pbix?dl=0
Data edited (deleted data in sample data):
Thanks!
BoB
- v-frfei-msft7 years agoCommunity Support
Hi BoBBie,
Please refer to the new measures.
ytd = CALCULATE(COUNTA(Blad4[orderno]),FILTER(ALL(Blad4),Blad4[Year]<=MAX(Blad4[Year])))
ytd-1-new = [ytd]-COUNTA(Blad4[orderno])
For more details, please check the pbix as attached.
Regards,
Frank
- BoBBie7 years agoFrequent Visitor
Hi v-frfei-msft Frank,
thanks again.
It's not exacty what i'm looking for. Maybe I misinterpet the ytd function......
The file: https://www.dropbox.com/s/9zxtoauleo7v2cb/test%20date%20-%20ytd.pbix?dl=0
is the original file.
I) Why does PBI shows '2019' (YTD-1 (sameperiodlastyear) while there is no '2019' data?(my fault....using 'previous year' and date table so data year-1 which is 2018 for 2019....)II) The latest day in the sample data is 11-06-18 (11 june 18) --> what I need is that all data previouws years is the same period in the corresponding years:
- 01-01-18 - 11-06-18
- 01-01-17 - 11-06-17
- 01-01-16 - 11-06-16
- 01-01-15 - 11-06-15
please note: that the actual data-set is updated daily (data till day before today) so the 'latest actual date' will be the day before today
I edited the file: deleted all data >11-06 so the figure shows the date like the way I prefer :-)
thanks again!
BoB