How can I take info from a cell and change it's format for a different cell?

workinghere

New Member
Joined
Oct 4, 2018
Messages
3
I have a cell that will display feet an inches as 10'0 or 7'0 and I need to take that information and display it in another cell in the exact format of 1000 or 0700. So I need to make sure the extra characters are included and the apostrophe is taken out. Is this possible?

Thank you very much.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Welcome to the Board!

Are you entries of 10'0 actually Text entries, or numeric entries with Custom Formats?
If Custom Formats, what exactly is the Custom Format?
 
Upvote 0
To Joe's point, if the apostrophe is actually typed into the cell then:

=TEXT(LEFT(A1,FIND(CHAR(39),A1)-1),"00")&TEXT(RIGHT(A1,LEN(A1)-FIND(CHAR(39),A1)),"00")

If the apostrophe is due to some kind of a custom number format then we'd need to know more.
 
Last edited:
Upvote 0
Thank you!

It is just text. The format listed is still "General". It's taking the information from a drop-down menu on another sheet. I'm just trying to make it the right format so it will populate in another formula in a way I can copy-and-paste into our inventory program. It only recognizes it as 1000, 0810, etc.
 
Upvote 0
Yes, it works perfectly! Thank you so much.

If you have some spare time, could you explain to me why this works? I'm not too familiar with the "LEN" or why the "39" is in there.

Again, thank you for the help.
 
Upvote 0
To Joe's point, if the apostrophe is actually typed into the cell then:

=TEXT(LEFT(A1,FIND(CHAR(39),A1)-1),"00")&TEXT(RIGHT(A1,LEN(A1)-FIND(CHAR(39),A1)),"00")

If the apostrophe is due to some kind of a custom number format then we'd need to know more.
If I am not mistaken, I think this formula will also work...

=TEXT(SUBSTITUTE(A1,"'",":"),"hhmm")
 
Upvote 0
=TEXT(SUBSTITUTE(A1,"'",":"),"hhmm")

Sweet formula! I might tweak it slightly to handle measurements over 23'11"...

=TEXT(SUBSTITUTE(A1,CHAR(39),":"),"[hh]mm")


@ WorkingHere - as far as the CHAR(39) bit goes, 39 is the ASCII code for the single quote. When writing formulas that involve it, sometimes it can be tough to see the little guy. When I first read Rick's formula I thought he'd written a test for an empty string, i.e. "" instead of a test for a quote, i.e. "'". You can see that spotting the single apostrophe nestled between two double-quotes can take a bit of an eagle eye. By using CHAR(39) instead of "'", it just make the formula a bit easier to read (to me).

As far as what Rick's formula is doing, it's a slick little trick that can come in handy in certain situations, and it works nicely here. He is swapping the apostrophe out, replacing it with a colon, which then casts the value as a time in Excel's calc engine. He then formats the time without the colon in the middle. All I did was adjust the formatting on the hours so that measurements over "24 hours" wouldn't round into multiples of 24, since now we're formatting time values.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,388
Messages
6,119,226
Members
448,878
Latest member
Da9l87

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