Hi
try
=WORKDAY(A1,1)

Signature
--
Regards
Frank Kabel
Frankfurt, Germany
> Hi
>
[quoted text clipped - 6 lines]
>
> So if today's date is 31/03/2004 the dates i need to generate based
on
> the current value of cell A1 would be.
>
[quoted text clipped - 4 lines]
>
> It has to be the first workday of the time period after the date in
A1
> and not the first workday of for example this week which would be
> 29/03/2004.
[quoted text clipped - 10 lines]
> ---
> Message posted from http://www.ExcelForum.com/
Niek Otten - 31 Mar 2004 20:21 GMT
That needs some fine-tuning, if I understand the OP well. Let's assume the
list with standard holidays (such as 1-1-2005) is in F1:F100.
The formula for a month could be could be
=WORKDAY(DATE(YEAR(TODAY()),MONTH(TODAY()+1),0),0,F1:F100)
For a year:
=WORKDAY(DATE(YEAR(TODAY())+1,1,0),1,F1:F100)
Using the same techniques, you could establish the other dates (for first
day of week, use WEEKNUM() and WEEKDAY())

Signature
Kind Regards,
Niek Otten
Microsoft MVP - Excel
> Hi
> try
[quoted text clipped - 39 lines]
> > ---
> > Message posted from http://www.ExcelForum.com/