steelcoyot
MIS
Hey team I'm looking for a way to have a user be prompted for a date. I also want to have the date populate 4 other cells with dates that are of set by 7 days. So if you put in 210406 for the date it will populate the other cells with 140406, 070406 and so forth. I also need to have the dates in that format so that I can pull data from an external website. The date formula I have now is this:
=((IF(LEN(DAY(TODAY()-7))<2,"0"&DAY(TODAY()-7),DAY(TODAY()-7))))&"0"&MONTH(TODAY()-7)&RIGHT(YEAR(TODAY()),2)
This formula off sets today date by 7.
Any help is highly appreciated.
=((IF(LEN(DAY(TODAY()-7))<2,"0"&DAY(TODAY()-7),DAY(TODAY()-7))))&"0"&MONTH(TODAY()-7)&RIGHT(YEAR(TODAY()),2)
This formula off sets today date by 7.
Any help is highly appreciated.