extract in same column cell with different format

1

I need to extract value in same column that have different format (date and text) as showed below:

09/02/80
23/12/73
ANA
ANA
11/03/83
11/03/83
07/07/34

How could obtain from one column two separated columns, one with all date and the other with only text? Thanks in advance

mtaran

Posted 2015-12-05T08:26:00.477

Reputation: 11

do you mean get from one column or get from one row? – gogoud – 2015-12-05T08:49:28.683

Answers

1

In B1 enter:

=IF(ISNUMBER(A1),A1,"")

and copy down. In C1 enter:

=IF(ISNUMBER(A1),"",A1)

and copy down:

enter image description here

Gary's Student

Posted 2015-12-05T08:26:00.477

Reputation: 15 540

0

Select the column with the mixed data. Press Ctrl + C, to copy the cells. Move to and adjacent cell that has enough blank cells to copy without pasting values over important data.

Next: Your selected cell should be where you want your data to be pasted into place.

Next: Press Alt, then E, then S (This is paste-special shortcut). Next: Under "Paste", select radio button "Formulas and number formats" --- also under "Operation", select radio button "Add".

Next: Click OK. The cells adjacent to your data should only be numbers and dates as expected.

Image of instructions link.

ejbytes

Posted 2015-12-05T08:26:00.477

Reputation: 1 819