S
StargateFan
To get this format of date in cell B1, with my abbreviated days:
071117.Sa
I was given the cell formula of this:
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
It's straightforward because it just copies the date from A2 into the
correct date format for the purpose needed in this particular sheet.
However, I have some addition in another cell where I'd like to
slightly change the date format to our particular format to
standardize the display. In this cell, A12, I currently have this
formula:
=IF(A2<>"",A2+1,"")
which gives me this format (due to making custom date format display):
Sun.Nov.18.2007
This is where I need to do my special date format again. But I
haven't figured out how to work with a formula that has addition in
it, so that
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
has an A2+1 function in there. I've tried and tried different
combinations but nothing works (I get "#VALUE").
So from this, =IF(A2<>"",A2+1,""), I need to get Sn.Nov.18.2007 type
of date format rather than the usual Sun.Nov.18.2007 hopefully with
something as simple as a modified ...
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
Thank you! D
071117.Sa
I was given the cell formula of this:
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
It's straightforward because it just copies the date from A2 into the
correct date format for the purpose needed in this particular sheet.
However, I have some addition in another cell where I'd like to
slightly change the date format to our particular format to
standardize the display. In this cell, A12, I currently have this
formula:
=IF(A2<>"",A2+1,"")
which gives me this format (due to making custom date format display):
Sun.Nov.18.2007
This is where I need to do my special date format again. But I
haven't figured out how to work with a formula that has addition in
it, so that
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
has an A2+1 function in there. I've tried and tried different
combinations but nothing works (I get "#VALUE").
So from this, =IF(A2<>"",A2+1,""), I need to get Sn.Nov.18.2007 type
of date format rather than the usual Sun.Nov.18.2007 hopefully with
something as simple as a modified ...
=IF(A2<>"",TEXT(A2,"yymmdd.")&CHOOSE(WEEKDAY(A2),"Sn","Mn","Tu","Wd","Th","Fr","Sa"),"")
Thank you! D