Date subtractor able to exclude weekends

e.g, {time:MM-DD-YYYY; subtract time:01-12-21(skip=SAT,SUN)}

The "X" format option is not the most appealing workaround. I feel like it goes against what Textblaze stands for. Plus, excluding weekends ruins the resultant date the X format yields in some cases.

Hi @MacKenzie_Carter,

This can already be done. The skip needs to be right after the days (because it only applies to days). And you need to use shift and a minus sign to subtract, since you're going back in time.

{time: MM-DD-YYYY; shift=-1M-12D(skip=SAT, SUN)-21Y}

Hope this helps :slight_smile: