Forum Discussion
Anonymous
7 years agoNot applicable
dynamic date
Hi, I need a date table that has only the last dates of every month. Like the one below. (I wanted to create a parameter for period end date but that function doesn't seem to be available in power B...
- 7 years ago
You can do this in Edit query mode. Here below are the screen shots.
and then right click on the Date header --> Remove duplicate , this will give you one row for each month as last day of the month.
Hope this helps,
SS
- 7 years ago
Anonymous Another way of doing this is.. Using "New Table" option with DAX below
_DimDateEOM = FILTER(CALENDAR("01-01-2018","31-12-2018"),[Date]=EOMONTH([Date],0))
PattemManohar
7 years agoCommunity Champion
Anonymous Another way of doing this is.. Using "New Table" option with DAX below
_DimDateEOM = FILTER(CALENDAR("01-01-2018","31-12-2018"),[Date]=EOMONTH([Date],0))Anonymous
7 years agoNot applicable
Hi Pattemmanohar,
This was helpful.
Thanks!