View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default How to add 30 days to date in another column, including Sat/Sun?

XL stores dates as integer offsets from a base date, so adding 30 days
is just


A1: <date
B1: =A1 + 30

Format B1 as a date.

In article ,
Sherri wrote:

I am creating a log for a business. I have "Date Invoice Submitted" in one
column. The next column is "Date Payment Due", which is 30 days after date
invoice submitted. Can I formulate this to calculate automatically,
including weekend days? Thanks for any help!