Many Formulas in one cell

jewpal

New Member
Joined
Aug 13, 2018
Messages
5
Hello knowledgeable users!

I am trying to fix a series of numbers. in E2 it reads:

20180809173450Z

I want it to be:

08092018

This is what I have so far:
=MID(E2,7,2)&LEFT(E2,LEN(E2)-9)
Which returns 09201808.

Ok almost there, just have to do that same thing to put 08 in front of the 092018.

=MID(E2,7,2)&LEFT(E2,LEN(E2)-9)&RIGHT(E2,2)

AHCK it does not work! I get:
092018080Z

So it seems that the formula is still using what is in E2 and not the "new result."
Any advice would be greatly appreciated!!

<colgroup><col width="283"></colgroup><tbody>
</tbody>
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
If you data is always in the format, just try this formula:
Code:
=MID(E2,5,2)&MID(E2,7,2)&LEFT(E2,LEN(E2)-11)
 
Last edited:
Upvote 0
Thank you! It would be cool if they were all in the same format. I do have some like this:

201818070121Z

That should read 07182018
Just to make it more difficult :)
 
Upvote 0
That is the same format as your first example, at least for the date portion at the start, so that same formula should work for it as well.

Try it out and if things aren't working post back specifics and we can address from that point.
 
Upvote 0
Hi, it spits out
18072018

<colgroup><col width="283"></colgroup><tbody>
</tbody>
It is different than the first example because the month and date are reversed
 
Upvote 0
Sorry I got ahead of myself i see that as well, how do you know when the Month is first and the Day second, is there anything to indicate that to you?
 
Upvote 0
Hi,

The problem here is how would the formula know which one is the day and which one is the month between the two different formats?

For instance, 20181209025221Z

Should the result be 09122018 or 12092018 ?
 
Upvote 0
This formula would work for your 2nd example:
Code:
=MID(E3,7,2)&MID(E3,5,2)&LEFT(E3,4)

Change the E3 to be whatever cell you need to point it too. If you can provide any guidance as to when you know it is in one format versus the other we might be able to build in some logic for that.
 
Upvote 0
They are actually on two different sheets so they are separated. The first example is definitely working correctly keeping the 4 digits together, putting them in front, and removing the remaining characters.
The second tab is all the reversed date.
Thank you very much philwojo that worked! What a great forum. Have a nice day everyone !!
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,380
Members
448,955
Latest member
BatCoder

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