Forum Discussion
Combine Years for Quarter
- 6 years ago
Position of * 1 is wrong
Year = ((FORMAT('Date'[Date],"YYYY") *1) -1) & "-"&FORMAT('Date'[Date],"YY")It should be after format close )
- 6 years ago
For completeness of this thread, I solved the issues with a couple of columns for year quarter and FY quarter and then combined the year from the year coloumn to match them up in order to produce slicers.
Year Q (Jan - Dec) = Yr Q = "Q" & INT ( FORMAT ( 'DATE'[Date] , "q" ) )
and
FYQ (April - March UK) =
FY Q =
IF (
'DATE'[Month Number] <= 3,
"Q4",
IF (
'DATE'[Month Number] <= 6,
"Q1",
IF (
'DATE'[Month Number] <= 9,
"Q2",
IF (
'DATE'[Month Number] <= 12,
"Q3"
)
)
)
)then used the following DAX
Thanks for the explination, I had an play with those numbers to see how it affected the result.
Now I just need to fix the cross over years, as currently it is not giving the corect set of Quarters the correct years.
Q1 should then change to 2017-18 not when the year changes in the year column
For completeness of this thread, I solved the issues with a couple of columns for year quarter and FY quarter and then combined the year from the year coloumn to match them up in order to produce slicers.
Year Q (Jan - Dec) = Yr Q = "Q" & INT ( FORMAT ( 'DATE'[Date] , "q" ) )
and
FYQ (April - March UK) =
IF (
'DATE'[Month Number] <= 3,
"Q4",
IF (
'DATE'[Month Number] <= 6,
"Q1",
IF (
'DATE'[Month Number] <= 9,
"Q2",
IF (
'DATE'[Month Number] <= 12,
"Q3"
)
)
)
)
then used the following DAX