#1   Report Post  
travelguy
 
Posts: n/a
Default If statements

I am trying to set-up a formula that will fill-in a value in a cell.

In a column (c7:c210) they are three value, either S, D, T. Based on what
alpha character is found, I want to insert a value, either 100 if S, 200 if
D, or 300 if T. I went to the bottom of the worksheet and set-up a location
for S(A212), D(A213), and T(A214) and a value for each in the adjacent 'B'
column.

I can get a single logic statement to work:

If(C7:c210,a212,b212)

and that works great for a single condition. But my question is how do I set
up a formula to cover all three conditions?
  #2   Report Post  
JulieD
 
Posts: n/a
Default

Hi

not sure i'm fully understanding you ... the range C7:C210, does it have a
separate S,D,T in each row or is there only one occurance of one of these in
the whole area?

if you have a letter in each row and in column D of each row you want to
return the associated value - then with only three options i would use a
simple nested IF statement and not worry about the table or values in
A212,A213,A214

so in D7
=IF(C7="S",100,IF(C7="D",200,IF(C7="T",300,0)))
and then copy this down the rest of the column using the autofill handle
(bottom right hand corner of cel D7, when you see a + double click)

If, however either S, D, or T is going to be entered somewhere once in the
range C7:C210 and you want to return the associated value then
something along the lines of
=IF(COUNTIF(C7:C210,"S")=1,100,IF(COUNTIF(C7:C210, "D")=1,200,IF(COUNTIF(C7:C210,"T")=1,300,0)))

Hope this helps
Cheers
JulieD


"travelguy" wrote in message
...
I am trying to set-up a formula that will fill-in a value in a cell.

In a column (c7:c210) they are three value, either S, D, T. Based on what
alpha character is found, I want to insert a value, either 100 if S, 200
if
D, or 300 if T. I went to the bottom of the worksheet and set-up a
location
for S(A212), D(A213), and T(A214) and a value for each in the adjacent 'B'
column.

I can get a single logic statement to work:

If(C7:c210,a212,b212)

and that works great for a single condition. But my question is how do I
set
up a formula to cover all three conditions?



  #3   Report Post  
travelguy
 
Posts: n/a
Default

Julie:

Thank you, that solved the problem.




-----Original Message-----
Hi

not sure i'm fully understanding you ... the range

C7:C210, does it have a
separate S,D,T in each row or is there only one

occurance of one of these in
the whole area?

if you have a letter in each row and in column D of each

row you want to
return the associated value - then with only three

options i would use a
simple nested IF statement and not worry about the table

or values in
A212,A213,A214

so in D7
=IF(C7="S",100,IF(C7="D",200,IF(C7="T",300,0)))
and then copy this down the rest of the column using the

autofill handle
(bottom right hand corner of cel D7, when you see a +

double click)

If, however either S, D, or T is going to be entered

somewhere once in the
range C7:C210 and you want to return the associated

value then
something along the lines of
=IF(COUNTIF(C7:C210,"S")=1,100,IF(COUNTIF(C7:C210 ,"D")

=1,200,IF(COUNTIF(C7:C210,"T")=1,300,0)))

Hope this helps
Cheers
JulieD


"travelguy" wrote

in message
news:40507513-1A27-4B19-96EE-

...
I am trying to set-up a formula that will fill-in a

value in a cell.

In a column (c7:c210) they are three value, either S,

D, T. Based on what
alpha character is found, I want to insert a value,

either 100 if S, 200
if
D, or 300 if T. I went to the bottom of the worksheet

and set-up a
location
for S(A212), D(A213), and T(A214) and a value for each

in the adjacent 'B'
column.

I can get a single logic statement to work:

If(C7:c210,a212,b212)

and that works great for a single condition. But my

question is how do I
set
up a formula to cover all three conditions?



.

  #4   Report Post  
JulieD
 
Posts: n/a
Default

you're welcome and thanks for the feedback

"travelguy" wrote in message
...
Julie:

Thank you, that solved the problem.




-----Original Message-----
Hi

not sure i'm fully understanding you ... the range

C7:C210, does it have a
separate S,D,T in each row or is there only one

occurance of one of these in
the whole area?

if you have a letter in each row and in column D of each

row you want to
return the associated value - then with only three

options i would use a
simple nested IF statement and not worry about the table

or values in
A212,A213,A214

so in D7
=IF(C7="S",100,IF(C7="D",200,IF(C7="T",300,0)) )
and then copy this down the rest of the column using the

autofill handle
(bottom right hand corner of cel D7, when you see a +

double click)

If, however either S, D, or T is going to be entered

somewhere once in the
range C7:C210 and you want to return the associated

value then
something along the lines of
=IF(COUNTIF(C7:C210,"S")=1,100,IF(COUNTIF(C7:C21 0,"D")

=1,200,IF(COUNTIF(C7:C210,"T")=1,300,0)))

Hope this helps
Cheers
JulieD


"travelguy" wrote

in message
news:40507513-1A27-4B19-96EE-

...
I am trying to set-up a formula that will fill-in a

value in a cell.

In a column (c7:c210) they are three value, either S,

D, T. Based on what
alpha character is found, I want to insert a value,

either 100 if S, 200
if
D, or 300 if T. I went to the bottom of the worksheet

and set-up a
location
for S(A212), D(A213), and T(A214) and a value for each

in the adjacent 'B'
column.

I can get a single logic statement to work:

If(C7:c210,a212,b212)

and that works great for a single condition. But my

question is how do I
set
up a formula to cover all three conditions?



.



  #5   Report Post  
bobf
 
Posts: n/a
Default


-----Original Message-----
I am trying to set-up a formula that will fill-in a value

in a cell.

In a column (c7:c210) they are three value, either S, D,

T. Based on what
alpha character is found, I want to insert a value,

either 100 if S, 200 if
D, or 300 if T. I went to the bottom of the worksheet and

set-up a location
for S(A212), D(A213), and T(A214) and a value for each in

the adjacent 'B'
column.

I can get a single logic statement to work:

If(C7:c210,a212,b212)

and that works great for a single condition. But my

question is how do I set
up a formula to cover all three conditions?
.
why not a simple IF statement

if(c7="s",100,if(c7="d",200,300))
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
2 If Statements between 2 values Q John Excel Worksheet Functions 4 December 13th 04 03:37 PM
4 different if statements, not working Brian Excel Worksheet Functions 5 December 12th 04 08:17 PM
Macro to find and delete all FALSE statements Woody13 Excel Discussion (Misc queries) 3 December 8th 04 11:16 PM
Unresolved Errors in IF Statements - Errors do not show in results Markthepain Excel Worksheet Functions 2 December 3rd 04 08:49 AM
If statements Mark Excel Worksheet Functions 3 November 2nd 04 08:39 PM


All times are GMT +1. The time now is 01:02 PM.

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"