Hi Keith
Are you saying that your dates are text values, not true Excel dates?
If you enter 25/07/2007 in a cell and then use
Format>Cells>Number>Custom> dddd, mmm dd,yyyy
it will display as
Wednesday, Jul 25,2007
but it will still be held as an Excel serial date, upon which the Weekday()
function will work.
If you need to convert text values to true dates, and provided you have a
blank column to the right of your data, then one way would be
In B1 enter =MID(A2,FIND(",",A2)+1,255) and copy down as far as required.
Copy the whole of column B>PasteSpecial>Values back over the formulae.
Mark column B, Data>Text to columns>Next>Next>click Date>choose from
dropdown M/D/Y>Finish
Format the resulting data as shown above.