Hi there.
I am working on a bit of automation.
Lets start with the result that I want.
i need this bellow to auto generate when I drag a cell down.
how I do t now is I have the DS part and the Date auto filling from a fixed cell will put the formula bellow. " it is tailored to my sheet"
=$E$2&TEXT($E$3;"yyyy/mm/dd")&TEXT("A"
E2 just has the letters "DS" in it.
what i am not able to figure out is to make the A at the end turn to a B if i drag the cell down.
i also need it to restart at A if the E3 cell changes to the next day. " E3 =today() "
i hope this is possible.
I am working on a bit of automation.
Lets start with the result that I want.
i need this bellow to auto generate when I drag a cell down.
DS2024/11/28A |
DS2024/11/28B |
DS2024/11/28C |
DS2024/11/28D |
DS2024/11/28E |
how I do t now is I have the DS part and the Date auto filling from a fixed cell will put the formula bellow. " it is tailored to my sheet"
=$E$2&TEXT($E$3;"yyyy/mm/dd")&TEXT("A"
E2 just has the letters "DS" in it.
what i am not able to figure out is to make the A at the end turn to a B if i drag the cell down.
i also need it to restart at A if the E3 cell changes to the next day. " E3 =today() "
i hope this is possible.
Book1.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | |||||||
2 | DS | ||||||
3 | 2024-11-28 | ||||||
4 | DS2024/11/28A | ||||||
5 | |||||||
6 | |||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E3 | E3 | =TODAY() |
A4 | A4 | =$E$2&TEXT($E$3,"yyyy/mm/dd")&TEXT("A",) |