Forum Discussion
Anonymous
7 years agoNot applicable
Filtering by Financial Year
I am trying to create a new column with financial year, i tried the following but it had the following error. Can anyone advice me. Thanks so much in advance.
- 7 years ago
I think I know what is going on, your table name need to be in single quote because its name is DAte, try following
Date = IF ( AND ( 'Date'[Date1] >= DATE ( 2015, 4, 1 ), 'Date'[Date1] <= DATE ( 2016, 3, 31 ) ), "FY15", "")
Anonymous
7 years agoNot applicable
i replaced the date with date1 but it still say "the syntax for '[date1] is incorrect.
my current date1 format is as shown in pic.
not sure where i have gone wrong.
parry2k
7 years agoSuper User
Anonymous lets add a simple expression to make sure it is working, add new column with following expression
Date 2 = Your Table Name[Date1]