If I try adding the following Measure into my DimDate table:
Past6Months =
IF(
FIRSTDATE( 'Dates'[FullDate] ) >= DATEADD( NOW(), -7, MONTH ),
TRUE(),
FALSE()
)
I get this error:
The first argument to 'DATEADD' must specify a column.
DATEADD(MONTH, -7, NOW())? At least this is how it should be written inSQL Server. - Giorgi Nakeuri