Imperial Weights in charts

bell_pa

New Member
Joined
Mar 7, 2007
Messages
5
This has me confused!

I have a sheet with a column of dates and a column of imperial weights that look like "10st 6lb". I need to chart the weights but cant seem to do it. I converted the cell into something I thought Excel would understand by using the following:
=LEFT(B2,FIND("st",B2,1)-1)&"."&MID(B2,FIND("st",B2,1)+3,FIND("lb",B2,1)-1-FIND(" ",B2,1))
but I hadn't realised that Excel would consider 10.11 to be smaller than 10.2. Obviously, I want it to be "ten delimiter eleven" rather than "ten point one one".
I had then considered just converting to pounds or even stones with a decimal but I've been told that isn't neat enough.
The chart needs to show 10st 7lb, 10.7, 10:7 or similar rather than 10.5 (ten and a half) stone.
Does this make sense to anyone?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Would 10st 7lb converted to 10:07 be acceptable?

If yes, you could convert the weights to time.
Excel Workbook
AB
110st 6lb10:06
210st 11lb10:11
38st 7lb8:07
...
Cell Formulas
RangeFormula
B1=TIMEVALUE(SUBSTITUTE(SUBSTITUTE(A1,"st ",":"),"lb",""))
B2=TIMEVALUE(SUBSTITUTE(SUBSTITUTE(A2,"st ",":"),"lb",""))
B3=TIMEVALUE(SUBSTITUTE(SUBSTITUTE(A3,"st ",":"),"lb",""))

Format column B at Time 13:30
This only works up to 23 stone.

EDIT: while time would display close to what you ask, it wouldn't scale the same as weight. The minutes would scale 1 to 60. That's not the same as lbs 1 to 14.
 
Last edited:
Upvote 0
Anything that will go into a chart axis will be great. I'll give that a try and let you know. Thanks!
 
Upvote 0
When i tried the time option it got confused when the weight drops from 10:00 to 09:13. The scale on the chart thinks that 09:59 should be the sequential value directly before 10:00 but I don't want it to be. Cheers anyway!
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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