View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default copy drag financial years

Perhaps Jacob intended to say =TEXT(DATE(2000+ROW(A6),ROW(A7),1),"yyyy/mm")
?

But that would only go as far as 2011/12 before going wrong.
It may therefore need =2000+ROW(A6)&"/"&TEXT(ROW(A7),"00") which would be OK
to 2098/99
or =2000+ROW(A6)&"/"&TEXT(MOD(ROW(A7),100),"00") if you want to go further.
--
David Biddulph


"Jacob Skaria" wrote in message
...
Try the below.

=TEXT(DATE(2006,ROW(A6),1),"yyyy/mm")

--
Jacob


"Ben" wrote:

Hi i use financial years a lot and was wondering if there was a simple
way to
copy, paste/drag the years down a column so they expand? For example when
i
drag the years down i get:
2006/07
2006/08
2006/09

Does anyone know how to get 2006/07, 2007/08 etc?

Thanks