Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Bob,
Welcome to my new thread. Bob's formula for the last work day of the current month (brought over from another thread WEEKDAY is this:- =WORKDAY(DATE(YEAR(A1),MONTH(A1)+1,1),-1) Looks like this is similar to the second formula below which I like. I was "intimidated" by the first one below. It was almost three lines on my screeen. If I don't need to grasp EOMONTH(), I prefer not. I have to have ATP (Analysis Toolpak) to use WORKDAY(), right? My system told me #N/A!, so I have to install it. ************************************************** ********************************* a.. Last workday of the current month: =IF(WEEKDAY(EOMONTH(TODAY(),0))=6,EOMONTH(TODAY(), 0)-1,IF(WEEKDAY(EOMONTH(TODAY(),0))=1,EOMONTH(TODAY() ,0)-2,EOMONTH(TODAY(),0))) or =WORKDAY(DATE(YEAR(TODAY()),MONTH(TODAY())+1,1),-1,Holidays) Source: http://www.officearticles.com/excel/...soft_excel.htm If link broken try this ...... http://tinyurl.com/mrzcc ************************************************** ************************** I will stay tuned. Epinn |