converting Date to a readable date

hibindas

New Member
Joined
Sep 30, 2017
Messages
1
Guys,

I am downloading a file from one software. the date format i am getting in the file is like this [TABLE="width: 71"]
<tbody>[TR]
[TD="width: 71"]21 Jul, 11[/TD]
[/TR]
</tbody>[/TABLE]
I tried to convert the date using formatting, I also tried using len,mid,left right but whatever value I get that's not in standard MM/DD/YYYY format which is recognised by excel in formula/calculation, below is what I tried and I got 21-Jul-11 but unless i do f2+f9 i don't get the required value. after f2+f9 it gets converted to the desired format but there are 10,000+ row of data so I can't do F2+F9 in all the rows.[TABLE="width: 101"]
<tbody>[TR]
[TD="class: xl65, width: 101"][/TD]
[/TR]
</tbody>[/TABLE]

[TABLE="width: 856"]
<colgroup><col><col span="4"><col></colgroup><tbody>[TR]
[TD]Date[/TD]
[TD]Find[/TD]
[TD]Day[/TD]
[TD]Month[/TD]
[TD]Year[/TD]
[TD]New Date[/TD]
[/TR]
[TR]
[TD]21 Jul, 11[/TD]
[TD]=FIND(" ",A2,1)[/TD]
[TD]=LEFT(A2,B2-1)[/TD]
[TD]=MID(A2,B2+1,3)[/TD]
[TD]=RIGHT(A2,2)[/TD]
[TD]=C2&"-"&D2&""&"-"&E2[/TD]
[/TR]
</tbody>[/TABLE]

please suggest
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try using Text to Columns (Delimited --> Delimiters: Tab --> Column data format: Date: MDY)
 
Upvote 0

Forum statistics

Threads
1,226,693
Messages
6,192,465
Members
453,725
Latest member
cvsdatreas

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top