It would really help if you would post:
• fields you want to use to calculate
• formula that you have written
• the error you are getting
In any case, you have posted this 3 times asking for help on the same topic and yet failed to try it out yourself.
To test the dates for 10 business days, you need to use the DateDiff function:
Code:
DateDiff
DateDiff returns a number of time intervals between two specified dates
Syntax:
DateDiff (intervalType, startDateTime, endDateTime)
DateDiff (intervalType, startDateTime, endDateTime, firstDayOfWeek)
• intervalType is a String expression that is the interval of time you use to calculate the difference between startDateTime and endDateTime.
• startDateTime is the first DateTime value used in calculating the difference.
• endDateTime is the second DateTime value used in calculating the difference.
• firstDayOfWeek is an optional constant specifying the first day of the week.
Returns
A Number value