Need Help Updating Table of Fiscal Quarters Using IF Statement

wjack

New Member
Joined
Sep 16, 2013
Messages
10
I'm attempting to create a table that will automatically update the previous fiscal quarters based on a single input value. My goal is that I can put the current fiscal quarter and year into one input cell (A2) and that the table will count down from there. Thanks for the help!

Here is how I'd like the table to look:
RuXZKKE.png


Here is how the table currently looks:
i4ioHgN.png


Here are the formulas going into the table. As you can see the first cell references the QTR FY input and the others are supposed to count down from there:
1byFX7J.png
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Welcome to the forum.
The LEFT(A5,1) part of your formula is returning a text string and not a value. By changing to LEFT(A5,1)+0 will return a value.

=IF(LEFT(A5,1)+0>1,LEFT(A5,1)-1,4)&"Q"&IF(LEFT(A5,1)+0>1,RIGHT(A5,2),RIGHT(A5,2)-1)
Excel Workbook
AB
1Current Quarter2Q14
2
3
4Currrent & Past Quarters
52Q14
61Q14
74Q13
83Q13
92Q13
101Q13
114Q12
123Q12
132Q12
141Q12
154Q11
163Q11
17
Sheet




<colgroup><col width="637"></colgroup>
 
Upvote 0

Forum statistics

Threads
1,216,156
Messages
6,129,192
Members
449,492
Latest member
steveg127

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top