It’s a pity that the Date Shifter cannot negative values from variable inputs.
But luckily there the Expression node.
With “add_date_duration($[“Date”], parse_date_duration(“P-1D”))” it’s possible to substract a day from you date column.
So the only thing to do is to use the convert the integer value of the offset into a string with the prefix “P” and suffix “D”. This is done in the “string manipulation (variable)” node:
string(“P”)+string($${IDelta}$$)+string(“D”)
and pass it into the “Expression” node:
add_date_duration($[“Date”], parse_date_duration($$[“delta_str”]))