Related Posts
What is an NFT?
Looking for procurement jobs any lead??
Additional Posts in Excel Genius
Would anyone be willing to teach me vlookup?
New to Fishbowl?
Download the Fishbowl app to
unlock all discussions on Fishbowl.
unlock all discussions on Fishbowl.




Sounds like you should be using a data model and Power BI
You should do a row of dates that is dynamic and have it calculate the quarter below it. Then use a =right(X,1) to pull the quarter and then use an index match or summifs to pull the data
If you need more data create a unique ID for each specific quarter using concatenate
Or just have a lagging row below the data so that it is lagging itself. If you have a live reference to the call 4 to the left, if you drag both over at the same time and while aligned you’ll get the data inputs you need
If you want to calculate fiscal quarter based on a date, just google the exact formula. That’s what I always do
If I understood your question correctly:
IF(cell = Q1 , Q4, concatenate( Q, right(cell,1) -1))
Im assuming you are handling year somewhere else.. if you need to get QX-YYYY I got something else for that
Coach
=« Q »&choose(right(A1,1),4,1,2,3)
With the Qx data in A1