Forum Discussion
if statement working with dates
- Nov 21, 2019
If in H1 of Dec sheet you have 01 Dec, 2019 and in H1 of Jan sheet you'd like to have 01 Jan 2010 that could be like
=EDATE(Dec!H1,1)
Similar for other sheets.
@ wjalle14:
I believe the problem is in the first part of the IF statement. There is nothing for the formula to evaluate as "true" or "False" - which is the basis for IF statement. The portion immediately following If( is:
TEXT(DATE(INT((…….)+1,1),"mmm yyyy")
this portion is simply converting the contents of one of the cells into a text form in the format "mmm yyyy". What is the IF statement evaluating to get to a "True" or "False" decision? This is portion of your formula creating the #value error. Add a decision type statement, your problem would be solved.
Ajay K. SinghI will try that see what happens thank you