An Azure service for ingesting, preparing, and transforming data at scale.
Hi @arkiboys ,
you can get Days with the following expressions:
'2022-01-31' (last day of the month before previous month) --> addDays(formatDateTime(subtractFromTime('2022-03-20', 1, 'MONTH'),'yyyy-MM-01'), -1, 'yyyy-MM-dd')
and '2022-02-01' (first day of previous month) --> formatDateTime(subtractFromTime('2022-03-20', 1, 'MONTH'),'yyyy-MM-01')
Thanks!