Self Population of Date Function

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.
 
F

Fred Smith

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top