#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 553
Default display lbs and ozs

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 211
Default display lbs and ozs

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default display lbs and ozs

Hi

Suggest to use the CONVERT() function

=CONVERT(400,"g","ozm")

If it returns the #NAME? error then from menu ToolsAddIns check 'Analysis
ToolPak add-in'...and then try

If this post helps click Yes
---------------
Jacob Skaria


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

thanks but could you change the formula so i can convert grams to lbs/ozs ?

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 211
Default display lbs and ozs

Well in case of change in measurement systems you could use:
=CONVERT(A1,"g","ozm")
as per Jacob.

--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

thanks but could you change the formula so i can convert grams to lbs/ozs ?

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

thanks. how do i get only 1 decimal places for the ozs, ex. 10 lbs 2.4 oz
instead of 2.4395...

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default display lbs and ozs

ROUND(...,1) or TEXT(...,"0.0")
--
David Biddulph

"Trail Dog" wrote in message
...
thanks. how do i get only 1 decimal places for the ozs, ex. 10 lbs 2.4 oz
instead of 2.4395...

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a
formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs
in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs
instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my
backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs
? thanks





  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 211
Default display lbs and ozs

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-TEXT(ROUNDDOWN(A1/16,0))*16,"0.0")&"
oz."

--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

thanks. how do i get only 1 decimal places for the ozs, ex. 10 lbs 2.4 oz
instead of 2.4395...

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default display lbs and ozs

can't get the formula to work. also, can i still total a column, does text
affect it ?

"Faraz A. Qureshi" wrote:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-TEXT(ROUNDDOWN(A1/16,0))*16,"0.0")&"
oz."

--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

thanks. how do i get only 1 decimal places for the ozs, ex. 10 lbs 2.4 oz
instead of 2.4395...

"Faraz A. Qureshi" wrote:

Sorry I thought you were inserting data manually. How about trying a formula
like:

=ROUNDDOWN(A1/16,0)&" lbs. & "&((A1/16)-ROUNDDOWN(A1/16,0))*16&" oz."

So as to convert 172 (oz) in cell A1, to "10 lbs. & 12 oz."?
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Trail Dog" wrote:

i input my weights, in grams, in one column and convert them to lbs/ozs in
the next column. when i input 400 ( grams ), it gives me 8.8 ozs instead of
14.11 ozs. ( the correct conversion ). help and thanks

"Trail Dog" wrote:

that helps a lot, thanks you

"FARAZ QURESHI" wrote:

How about trying, the format:
0 "lbs". 0 "ozs"

"Trail Dog" wrote:

i use the formula # "lbs" ??/16 "ozs" for calculating my backpacking gear.
how do i change it to show 3 lbs 2 ozs instead of 3 lbs 2/16 ozs ? thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
some cells display formulas, some display values mvivelo Excel Discussion (Misc queries) 1 March 27th 08 10:09 PM
How to display remaining txt file which overflowed MsgBox display? EagleOne Excel Discussion (Misc queries) 1 November 2nd 06 01:10 PM
Display every 3rd category name but still display latest month maryj Charts and Charting in Excel 1 September 24th 06 09:05 PM
Can I display an Excel chart as my screensaver display? Burke Charts and Charting in Excel 0 August 1st 06 07:01 PM
Numbers display as decimal, i.e. enter 123 display 1.23 IGH219 Setting up and Configuration of Excel 1 June 16th 05 09:16 PM


All times are GMT +1. The time now is 03:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"