The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
10 | |
7 |