Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
hello,
i have to create new table with dummy transaction base on
CustomerCreatedDate
Sample:
CustomerName , CreateDate
John a , 01/08/2021
I need to create a new table with one row per month till current month
John a , 01/08/2021
John a , 01/09/2021
John a , 01/10/2021
John a , 01/11/2021
John a , 01/12/2021
How can i do this with Dax or M query
thanks
Solved! Go to Solution.
@Urielpc pbix is attached; the DAX uqery is following
Table 2 =
VAR _1 =
ADDCOLUMNS (
'Table',
"lastDate", DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ), 1 )
)
VAR _2 =
FILTER (
GENERATE (
_1,
DATESBETWEEN ( 'Calendar'[Date], 'Table'[CreatedDate], [lastDate] )
),
DAY ( [Date] ) = 1
)
RETURN
_2
@Urielpc pbix is attached; the DAX uqery is following
Table 2 =
VAR _1 =
ADDCOLUMNS (
'Table',
"lastDate", DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ), 1 )
)
VAR _2 =
FILTER (
GENERATE (
_1,
DATESBETWEEN ( 'Calendar'[Date], 'Table'[CreatedDate], [lastDate] )
),
DAY ( [Date] ) = 1
)
RETURN
_2
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |