plz help

Y

yassar hayat

i have a column containing different dates of a year. i want if the specified
date is greater than 7th of the month it should return me (in another column)
the 22nd day of next month,otherwise it should show me 7th day of next month.
 
H

hideki

What do you mean by "the month"?. Is it current month or value from th
column? You can enter formula to column where you want the result to b
written. Below is an example of the formula.

This assuming your date column is in A. Change the column to sui
yours. Don't forget to set your result column to date format (othe
wise it'll only shows some numbers).

=IF(DAY(A1)>7,DATE(YEAR(A1),MONTH(A1)+1,DAY(22)),DATE(YEAR(A1),MONTH(A1)+1,DAY(7)))

Best regards
 
Top