View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sheeloo[_4_] Sheeloo[_4_] is offline
external usenet poster
 
Posts: 225
Default calculating only weekdays

With your first date in A1 enter this in B1 and copy across columns...
Excel 2007
=WORKDAY(A1,1)

Excel 2003
=IF(WEEKDAY(A1+1,2)<6,A1+1,A1+3)

"Sinkguy1" wrote:

I need to enter the date for weekdays only across columns in numerous
worksheets. How can i get the dates for monday thru fridays only stating
with the date in B1?