Forum Discussion
Using values from a Visual filter in a measure
- 5 years ago
I apologize for the misplaced " in the formula.
Before you create the date column, click on Month, change the data type to text. Same thing goes to year. Then, you create the date column, after that, change the data type of the date column to date.
Tried this one
Rest of the World -
Date: "1/" & [Month] & "/" & "[Year]
It shows an error right away so i took the " before the Year away so i could save. Like this
Rest of the World -
Date: "1/" & [Month] & "/" & [Year]
Now i get an error saying. Expression.Error: We cannot apply operator & to types text and number...
I apologize for the misplaced " in the formula.
Before you create the date column, click on Month, change the data type to text. Same thing goes to year. Then, you create the date column, after that, change the data type of the date column to date.