Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default I want to string several formulas together.

.9 = A
..8 to .89 = B
..7 to .79 = C
..6 to .69 = D
<.6 = F
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 205
Default I want to string several formulas together.


=IF(A10.6,(IF(A10.69,(IF(A10.79,(IF(A10.89,(IF (A10.9,"A","B")),"B")),"C")),"D")),"F")

Best regards

John

"Curt R." wrote in message
...
.9 = A

.8 to .89 = B
.7 to .79 = C
.6 to .69 = D
<.6 = F



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default I want to string several formulas together.

=LOOKUP(A1,{0,"F";0.6,"D";0.7,"C";0.8,"B";0.9,"A"} )

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Curt R." wrote in message
...
.9 = A

.8 to .89 = B
.7 to .79 = C
.6 to .69 = D
<.6 = F



  #4   Report Post  
Posted to microsoft.public.excel.programming
TK TK is offline
external usenet poster
 
Posts: 177
Default I want to string several formulas together.


Curt:

Just to add another suggestion.

The following will also work and it also handles the .9 and .6 as does
Bob Phillips's

=IF(A1=0.9,"A",(IF(A1=0.8,"B",(IF(A1=0.7,"C",(I F(A1=0.6,"D","F")))))))

Good luct
TK

"Curt R." wrote in message
...
.9 = A

.8 to .89 = B
.7 to .79 = C
.6 to .69 = D
<.6 = F




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
Sorting cells with a string formulas Erik Excel Worksheet Functions 1 February 6th 10 11:15 PM
Multiple String IF Formulas cwn Excel Worksheet Functions 4 March 7th 08 06:16 PM
How do I string formulas together in Excel to display variables DavidB New Users to Excel 19 October 10th 06 09:44 AM
Long string of IF formulas changetires Excel Discussion (Misc queries) 3 June 21st 06 08:59 PM
Create a formula into a String then assign string to a cell Myrna Larson[_2_] Excel Programming 6 August 23rd 03 09:42 PM


All times are GMT +1. The time now is 03:02 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"