Self Population of Date Function

  • Thread starter Thread starter SW
  • Start date Start date
S

SW

I have formulas in a column that self populate dates in each succeeding cell.
I would like to be able to have the cells stop self populating on the 25th
of each month but have been unable to do so.

In Column B the formula is =IF($M$3=""," ",IF(WEEKDAY(B28)=6,B28+3,B28+1))

I have an associated formula in Column A that self populates with the day of
the week: Monday, Tuesday, Wednesday, etc. The formula in Column A is:

=IF($M$3=""," ",IF(WEEKDAY(B29)=7,B29+3,B29))

Any help you can provide would be most appreciated.
 
Try it this way:

=IF($M$3="","",if(day(b28)>25,"what you want when past
25th",IF(WEEKDAY(B28)=6,B28+3,B28+1)))

Regards,
Fred.
 
Back
Top