Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
atb atb is offline
external usenet poster
 
Posts: 4
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No work

cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No work

Is it possible that you have something else in F3 or H3 besides numeric
values? Also, if the ratio is < 0.99, do you really want to have it listed
as 0.00 CENTS? Your result will be 2 orders of magnitude smaller than what
it is.

"atb" wrote:

cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,939
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No work

Why not just use a custom format (Right Click - Format Cell - Number -
Custom) for the cell something like this...

[0.99] $0.00; 0.00¢

Now just use the formula F3/H3 in the cell and it will format the way you
intend... The only difference being that your formula is returning text and
not a number but I should think you want the value to be a number anyways.
--
HTH...

Jim Thomlinson


"atb" wrote:

cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
atb atb is offline
external usenet poster
 
Posts: 4
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No work



"atb" wrote:

cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.


*******

Figured it out, the problem is: I was using the Text converted version to
do my calculations instead of the intger version of it. dividing f3 as text
... Doh

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
atb atb is offline
external usenet poster
 
Posts: 4
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No



"Jim Thomlinson" wrote:

Why not just use a custom format (Right Click - Format Cell - Number -
Custom) for the cell something like this...

[0.99] $0.00; 0.00¢

Now just use the formula F3/H3 in the cell and it will format the way you
intend... The only difference being that your formula is returning text and
not a number but I should think you want the value to be a number anyways.
--
HTH...

Jim Thomlinson


Jim, that's cause I'm not smart enough to figure that out yet..:)

However, its cleaner, and I do want the Dollar symbols to be added as text
because its not imported into a package I have to do labels...


"atb" wrote:

cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default 2.5-0.89¢-#VALUE!-2.5 - =IF((F3/H3)0,TEXT(F3/H3,"$0.00") No work

I assume that you've got the F3 & H3 back to front in your question? If
you're expecting F3/H3 to be 0.36, then the 0.89 must be in F3 and the 2.5
in H3. With those numbers, your formula gives 0.36¢.

If you're getting #VALUE as an answer, then I assume that one or both of the
numbers isn't actually a number, but text. Change it to a number.
--
David Biddulph

"atb" wrote in message
...
cells at a
2.5 = f3 / 0.89 = H3.. #value! should be: 0.36

=IF((F3/H3)0.99,TEXT(F3/H3,"$0.00"),TEXT(F3/H3,"0.00¢"))

On another line with same formula: this works

8.3 $1.39 0.17¢

The only thing I can tell is that the second column is not less then $1.00

Please help me with this... thank you.



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
Dates and Recomended Graphing Programs to work with excel? John Charts and Charting in Excel 2 December 8th 05 07:58 PM
A search for $ in a formula use to work now it does not work JuneJuly Excel Discussion (Misc queries) 2 November 30th 05 10:13 PM
Moving a sheet from one work book to another? WTG Excel Worksheet Functions 1 November 3rd 05 07:12 PM
My links no longer work . . . mike Excel Discussion (Misc queries) 8 October 27th 05 11:59 PM
How to get saved old saved work that was saved over? Maral Excel Discussion (Misc queries) 1 February 20th 05 08:59 PM


All times are GMT +1. The time now is 07:32 AM.

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

About Us

"It's about Microsoft Excel"