If I'm understanding your question correctly, you could just parse out the month from the the current field, add 1, then use that value to create your adjusted date field that you use in the date partition.
Original Date="2/11/2022"
Original Month = Split(Original Month,1,"/")
Original Day = Split(Original Month,2,"/")
Original Year = Split(Original Month,3,"/")
Adjusted Month = If(Original Month=12,1,Original Month +1)
Adjusted Year = If(Original Month=12,Original Year+1,Original Year)
Adjusted Date = Adjusted Month&"/"&Original Day&"/"&Adjusted Year
Some of this might need to be modified depending on the format of your original date field.
I'm pretty sure there are other methods using combinations of the Dateformat(), Days(), and/or Months() formulas that might require fewer formula fields, but I find the above is pretty straightforward and obvious to anyone who might be coming later and looking at your config.