使用当前日期计算上个月的日期和上个月的前一天(数据流,ADF)

Calculate the date of the previous month and the date before previous month using current date (data flow, ADF)

我有一个日期列是每个月的第一天(例如,2020-01-01),我想计算上个月的日期(例如,2019-12-01)和日期上个月之前(例如,2019-11-01)。在表达式构建器中,我们是否有任何函数来处理它?谢谢

您可以使用 subMonths 函数,例如:

subMonths(toDate('2020-01-01'), 1)

subMonths(toDate('2020-01-01'), 2)