Hello,
I have a simple data validation of each quarter in a year, C4. Once the quarter has been chosen it displays each month within that quarter in cells: F4,I4,& L4.
Currently these months which are displayed are not in date format. How can I get them to be dates and not general text. Also, I do not what to mess with the year once it goes to 2022, cell A1 displays the current year and will be changed to 01/01/2022 once we hit the new year.
cells C6,F6,& I6 are all formatted to mm/dd/yyyy which you will see if not working.
Thank you for your time,
Bdenn
I have a simple data validation of each quarter in a year, C4. Once the quarter has been chosen it displays each month within that quarter in cells: F4,I4,& L4.
=IFS($C$4="Quarter 1","January-2021",$C$4="Quarter 2","April-2021",$C$4="Quarter 3","July-2021",$C$4="Quarter 4","October-2021")
=IFS($C$4="Quarter 1","February-2021",$C$4="Quarter 2","May-2021",$C$4="Quarter 3","August-2021",$C$4="Quarter 4","November-2021")
=IFS($C$4="Quarter 1","March-2021",$C$4="Quarter 2","June-2021",$C$4="Quarter 3","September-2021",$C$4="Quarter 4","December-2021")
Currently these months which are displayed are not in date format. How can I get them to be dates and not general text. Also, I do not what to mess with the year once it goes to 2022, cell A1 displays the current year and will be changed to 01/01/2022 once we hit the new year.
cells C6,F6,& I6 are all formatted to mm/dd/yyyy which you will see if not working.
Thank you for your time,
Bdenn
Quarters.xlsx | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | |||
1 | 01/01/2021 | Year Start Date | Quarters | ||||||||||||||||
2 | 10/09/2021 | Today's Date | Quarter 1 | ||||||||||||||||
3 | Quarter 2 | ||||||||||||||||||
4 | Quarter 2 | April-2021 | May-2021 | June-2021 | Quarter 3 | ||||||||||||||
5 | Quarter 4 | ||||||||||||||||||
6 | April-2021 | May-2021 | June-2021 | YTD | |||||||||||||||
7 | Sold | Profit | Shipping | Sold | Profit | Shipping | Sold | Profit | Shipping | Sold | Profit | Shipping | |||||||
8 | Product 1 | ||||||||||||||||||
9 | Product 2 | ||||||||||||||||||
10 | Product 3 | ||||||||||||||||||
11 | Product 4 | ||||||||||||||||||
12 | Product 5 | ||||||||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | A2 | =TODAY() |
F4 | F4 | =IFS($C$4="Quarter 1","January-2021",$C$4="Quarter 2","April-2021",$C$4="Quarter 3","July-2021",$C$4="Quarter 4","October-2021") |
I4 | I4 | =IFS($C$4="Quarter 1","February-2021",$C$4="Quarter 2","May-2021",$C$4="Quarter 3","August-2021",$C$4="Quarter 4","November-2021") |
L4 | L4 | =IFS($C$4="Quarter 1","March-2021",$C$4="Quarter 2","June-2021",$C$4="Quarter 3","September-2021",$C$4="Quarter 4","December-2021") |
C6,F6,I6 | C6 | =F4 |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
C4:E4 | List | =$P$2:$P$5 |