English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Hi, in Excel in A1 their is a date say 11-Mar-2006. I want a formula which should give me 05-apr-2006. If my date is less than 15th of every month should give me next month 05th date if not next of next month's 05th date. Ex : if 11-may-2006 then ans: 05-Jun-06, if 16-may-2006 it should be 05-Jul-06. I want this to be in formula. Thank in advance for any help.

2006-10-23 20:44:40 · 2 answers · asked by Raju 2 in Education & Reference Financial Aid

2 answers

Done! I have tried it and it works.

=IF(DAY(A1)<16,DATE(YEAR(A1),MONTH(A1)+1,5),DATE(YEAR(A1),MONTH(A1)+2,5))

edit: oh dear, Yahoo! Answer won't let me write a long word.

Try put the lines below in one line:

=IF(DAY(A1)<16,DATE(YEAR(A1),
MONTH(A1)+1,5),
DATE(YEAR(A1),MONTH(A1)+2,5))

Hope it works for you, good luck:)

2006-10-23 21:14:13 · answer #1 · answered by BotaXupeR 3 · 0 0

Im working on it currently, but its going to very complicated. If im able to finnish it I will have to e-mail it to you, so I hope that is possible. If other people want a copy let me know.

And if someone else manages to do this can they let me know how!!

EDIT:I too have done it, however cannot send it to you, and cannot reproduce it here. It works on a similar way to the other persons, but uses a single IF and a few of the date functions.

2006-10-24 04:00:53 · answer #2 · answered by Bacteria Boy 4 · 0 0

fedest.com, questions and answers