Hi all.
I have a formula that sum(adds) +2 days into a basic date column for later use. The problem is, it's summing with weekend days. For example;
3th of June -> Friday.
What should be done:
Formula adds two days desconsidering weekends, in this case the result would be 7th of June.
What is happening:
Formula is giving the result of 5th of June.
DateTimeFormat(DateTimeAdd(DateTimeParse([DATA_MOVIMENTO],"%Y-%m-%d"),+2,"days"),"%Y-%m-%d")
DATA_MOVIMENTO = 3th of June btw as 2022-06-03.
How to avoid that?
Thanks