What are you trying to do (meaning what is it for)?
You would need to use formulas, here's an example assuming that you
put the first date in A1, put the formula in A2, format as date and copy
down to
A31
=IF(A1="","",IF(DATE(YEAR(A1),MONTH(A1),DAY(A1))=DATE(YEAR(A1),MONTH(A1)+1,0
),"",A1+1))
if you always want 31 days from the date you put in you can use this in A2
=IF(A1="","",A1+1)
copy down
--
Regards,
Peo Sjoblom
Lisa said:
I am trying to fill a column with variable starting and ending dates. I
am using the Fill / Series Function but I cannot input a cell in the Stop
Value. Any suggestions?