Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I frequently use fiscal year representations of years, and would like to be able to use this in a date field where the year can be incremented by a formula. for example, the fiscal year from July 2002 through June 2003 is frequently written, FY 2002 - 2003 or sometimes, just 2002 - 2003 is there any way that I can put something like FY 2002 - 2003 into Cell A1, and then put a formula like... =A1 + 1 or maybe =A2 + 365 into Cell B1 and have the value in B1 show as 2003 - 2004 or FY 2003 - 2004 Can this be done? If it can't be done, perhaps it can be a suggestion for future versions of Microosft products. Thanks Keith |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Keith,
there are several ways to tackle this. One way is to put the number 2002 in a cell, say K1. Then let us say you start with your fiscal years in A3. ="FY "&$K$1+(ROW()-ROW($A$3))&" - "&$K$1+(ROW()-ROW($A$3))+1 Does this help? Kostis Vezerides |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LEFT(A1,4)+1&" - "&RIGHT(A1,4)+1
Vaya con Dios, Chuck, CABGx3 "keith" wrote: Hello, I frequently use fiscal year representations of years, and would like to be able to use this in a date field where the year can be incremented by a formula. for example, the fiscal year from July 2002 through June 2003 is frequently written, FY 2002 - 2003 or sometimes, just 2002 - 2003 is there any way that I can put something like FY 2002 - 2003 into Cell A1, and then put a formula like... =A1 + 1 or maybe =A2 + 365 into Cell B1 and have the value in B1 show as 2003 - 2004 or FY 2003 - 2004 Can this be done? If it can't be done, perhaps it can be a suggestion for future versions of Microosft products. Thanks Keith |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This might work for you, if you're just looking for a way to increment the
displayed value of your Fiscal Years (like for column headers): In Cell A1: FY 2002 - 2003 In Cell B1: ="FY " & RIGHT(A1,4) & " - " & RIGHT(A1,4)+1 HTH, Elkar "keith" wrote: Hello, I frequently use fiscal year representations of years, and would like to be able to use this in a date field where the year can be incremented by a formula. for example, the fiscal year from July 2002 through June 2003 is frequently written, FY 2002 - 2003 or sometimes, just 2002 - 2003 is there any way that I can put something like FY 2002 - 2003 into Cell A1, and then put a formula like... =A1 + 1 or maybe =A2 + 365 into Cell B1 and have the value in B1 show as 2003 - 2004 or FY 2003 - 2004 Can this be done? If it can't be done, perhaps it can be a suggestion for future versions of Microosft products. Thanks Keith |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much. That was very helpful.
there are three great answers here and I'll try them all. keith "Elkar" wrote: This might work for you, if you're just looking for a way to increment the displayed value of your Fiscal Years (like for column headers): In Cell A1: FY 2002 - 2003 In Cell B1: ="FY " & RIGHT(A1,4) & " - " & RIGHT(A1,4)+1 HTH, Elkar "keith" wrote: Hello, I frequently use fiscal year representations of years, and would like to be able to use this in a date field where the year can be incremented by a formula. for example, the fiscal year from July 2002 through June 2003 is frequently written, FY 2002 - 2003 or sometimes, just 2002 - 2003 is there any way that I can put something like FY 2002 - 2003 into Cell A1, and then put a formula like... =A1 + 1 or maybe =A2 + 365 into Cell B1 and have the value in B1 show as 2003 - 2004 or FY 2003 - 2004 Can this be done? If it can't be done, perhaps it can be a suggestion for future versions of Microosft products. Thanks Keith |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much. That was very helpful.
there are three great answers here and I'll try them all. keith "vezerid" wrote: Keith, there are several ways to tackle this. One way is to put the number 2002 in a cell, say K1. Then let us say you start with your fiscal years in A3. ="FY "&$K$1+(ROW()-ROW($A$3))&" - "&$K$1+(ROW()-ROW($A$3))+1 Does this help? Kostis Vezerides |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much. That was very helpful.
there are three great answers here and I'll try them all. keith "CLR" wrote: =LEFT(A1,4)+1&" - "&RIGHT(A1,4)+1 Vaya con Dios, Chuck, CABGx3 "keith" wrote: Hello, I frequently use fiscal year representations of years, and would like to be able to use this in a date field where the year can be incremented by a formula. for example, the fiscal year from July 2002 through June 2003 is frequently written, FY 2002 - 2003 or sometimes, just 2002 - 2003 is there any way that I can put something like FY 2002 - 2003 into Cell A1, and then put a formula like... =A1 + 1 or maybe =A2 + 365 into Cell B1 and have the value in B1 show as 2003 - 2004 or FY 2003 - 2004 Can this be done? If it can't be done, perhaps it can be a suggestion for future versions of Microosft products. Thanks Keith |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Ho to Delete "Ghost" Pivot Tables | Excel Discussion (Misc queries) | |||
Capturing a date field once only | Excel Worksheet Functions | |||
Year-to-date year to date formula | Excel Worksheet Functions | |||
How to Join/concatenate a date field with a time field in Excel? | Excel Discussion (Misc queries) | |||
How to get only the year in the date format in Access | New Users to Excel |