Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Help ... what wrong with this code


Column N is value - Column A is the result

here is the code:

Range("A2").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[13]80000,""$80,000 or above"",IF(RC[13]70000,""$70,000 -
$79,999"",IF(RC[13]60000,""$60,000 - $69,999"",IF(RC[13]50000,""$50,000 -
$59,999"",IF(RC[13]40000,""$40,000 - $49,999"",IF(RC[13]30000,""$30,000 -
$39,999"",IF(RC[13]20000,""$20,000 - $29,999"",IF(RC[13]15000,""$15,000 -
$15,999"",""$15,000 or below""))))))))"

but in Column A they all give me the result is: $80,000 or above
Even the amount is only 5000

Please Help


Best Regards



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Help ... what wrong with this code

Chuong Nguyen,

Your values in column N are Text values, not numbers. Enter a 1 into a cell, copy it, select all
the values in N, right-click, choose paste-special / values / multiply / OK. Then format the cells
as currency with how ever many decimals you want.

HTH,
Bernie
MS Excel MVP


"Chuong Nguyen" wrote in message
...

Column N is value - Column A is the result

here is the code:

Range("A2").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[13]80000,""$80,000 or above"",IF(RC[13]70000,""$70,000 -
$79,999"",IF(RC[13]60000,""$60,000 - $69,999"",IF(RC[13]50000,""$50,000 -
$59,999"",IF(RC[13]40000,""$40,000 - $49,999"",IF(RC[13]30000,""$30,000 -
$39,999"",IF(RC[13]20000,""$20,000 - $29,999"",IF(RC[13]15000,""$15,000 - $15,999"",""$15,000 or
below""))))))))"

but in Column A they all give me the result is: $80,000 or above
Even the amount is only 5000

Please Help


Best Regards





  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Help ... what wrong with this code

And here is code for a better formula:

Range("A2").FormulaR1C1 = _
"=IF(RC[13]80000,""Above $80,000""," & _
"IF(RC[13]<15000,""Below $15,000"",""$"" & " & _
"INT(RC[13]/10000)&""0,000 - $""&" & _
"INT(RC[13]/10000)&""9,999""))"

HTH,
Bernie
MS Excel MVP


"Chuong Nguyen" wrote in message
...

Column N is value - Column A is the result

here is the code:

Range("A2").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[13]80000,""$80,000 or above"",IF(RC[13]70000,""$70,000 -
$79,999"",IF(RC[13]60000,""$60,000 - $69,999"",IF(RC[13]50000,""$50,000 -
$59,999"",IF(RC[13]40000,""$40,000 - $49,999"",IF(RC[13]30000,""$30,000 -
$39,999"",IF(RC[13]20000,""$20,000 - $29,999"",IF(RC[13]15000,""$15,000 - $15,999"",""$15,000 or
below""))))))))"

but in Column A they all give me the result is: $80,000 or above
Even the amount is only 5000

Please Help


Best Regards





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
Help with what is wrong with code OssieMac Excel Programming 0 March 28th 07 12:13 AM
What the F@#% is wrong with this code?? Finny[_3_] Excel Programming 8 July 19th 06 04:56 PM
What's wrong with this code??? Twain[_3_] Excel Programming 3 August 1st 05 03:02 PM
What is wrong with this code? Jan Excel Programming 4 June 14th 05 06:48 PM
What's wrong with the code,pls hv a look changeable[_10_] Excel Programming 0 November 3rd 04 09:56 AM


All times are GMT +1. The time now is 10:53 PM.

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"