I desire an automatically updating excel formula, or formulas, that wiIl read the prior quarter as like "Q2 2024" and "2nd quarter 2024", with using the CONCATENATE formula, or similar functioning formula excel feature.
In order for excel to read the latest calendar year quarter, displaying digits for the date in the form of mm/dd/yyyy , there is this formula I use :
=TEXT(EOMONTH(TODAY(),-4)+1,"mm/dd/yyyy")&" - "&TEXT(EOMONTH(TODAY(),-1),"mm/dd/yyyy")
Presently, as of today's July 2024 date, that will show-up in excel as "04/01/2024 - 06/30/2024". Good. I desire to also use the formula, or similar type of formula, to read as, (1) "ABC Corp Q2 2024 tax payment to IRS" and (2) "ABC Corp 2nd quarter 2024 tax payment to IRS". The "ABC Corp" and the "tax payment to IRS" parts of it never change. The quarter of the year part, however, is always the latest quarter of year, which one that happens to be, as of today's date. I'd like to have excel formula for it to auto-update, to prevent human typing error. How to make it?
In order for excel to read the latest calendar year quarter, displaying digits for the date in the form of mm/dd/yyyy , there is this formula I use :
=TEXT(EOMONTH(TODAY(),-4)+1,"mm/dd/yyyy")&" - "&TEXT(EOMONTH(TODAY(),-1),"mm/dd/yyyy")
Presently, as of today's July 2024 date, that will show-up in excel as "04/01/2024 - 06/30/2024". Good. I desire to also use the formula, or similar type of formula, to read as, (1) "ABC Corp Q2 2024 tax payment to IRS" and (2) "ABC Corp 2nd quarter 2024 tax payment to IRS". The "ABC Corp" and the "tax payment to IRS" parts of it never change. The quarter of the year part, however, is always the latest quarter of year, which one that happens to be, as of today's date. I'd like to have excel formula for it to auto-update, to prevent human typing error. How to make it?