#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 152
Default IF statement problem

Hi,

I'm trying to make up an IF statement but not having much luck, my table reads

Date Area Tank
1/1/06 A Hp
1/1/06 B Lp
2/1/06 A Lp
2/1/06 B Shut
2/1/06 C LP
2/1/06 G Test

I want to have in the formula cell a statement that returns four different
numbers for the four possible text.

i.e: If the data cell in tank reads "Hp" then the formula cell reads "1" or
if the data cell reads "Lp" the formula cell reads "2" and so forth for all
four options so that "Test"=3 and "Shut"=4

Is this possible?

Many thanks,
Ross
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default IF statement problem


Assuming Data Are and Tank are columns A B and C isnt this just a simple
case of in column D entering the formula

=IF(B1="Hp",1,IF(B1="Lp",2,IF(B1=Shut",3,IF(B1="Te st",4,"UNKNOWN"))))

Then copy the formula down the D column

(Im sure theres a simpler formula to use to produce this)


--
Special-K
------------------------------------------------------------------------
Special-K's Profile: http://www.excelforum.com/member.php...fo&userid=7470
View this thread: http://www.excelforum.com/showthread...hreadid=561109

  #3   Report Post  
Posted to microsoft.public.excel.misc
Dav Dav is offline
external usenet poster
 
Posts: 1
Default IF statement problem


if you create a table say in e2:f5
Hp 1
Lp 2
Test 3
Shut 4

then in the say cell d2 =vlookup(c2,$e$2:$f$5,2,false) and copy it
down

or

=if(c2="Hp",1,if(c2="Lp",2,if(c2="Test",3,if(c2="s hut",""))))

regards

Dav


--
Dav
------------------------------------------------------------------------
Dav's Profile: http://www.excelforum.com/member.php...o&userid=27107
View this thread: http://www.excelforum.com/showthread...hreadid=561109

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default IF statement problem

Hi Ross

One way
=LOOKUP(C2,{"hp",1;"lp",2;"shut",4;"test",3})

If you do want to use IF's, then
=IF(C2="hp",1,IF(C2="lp",2,IF(C3="test",3,IF(C2="s hut",4,""))))

--
Regards

Roger Govier


"Ross" wrote in message
...
Hi,

I'm trying to make up an IF statement but not having much luck, my
table reads

Date Area Tank
1/1/06 A Hp
1/1/06 B Lp
2/1/06 A Lp
2/1/06 B Shut
2/1/06 C LP
2/1/06 G Test

I want to have in the formula cell a statement that returns four
different
numbers for the four possible text.

i.e: If the data cell in tank reads "Hp" then the formula cell reads
"1" or
if the data cell reads "Lp" the formula cell reads "2" and so forth
for all
four options so that "Test"=3 and "Shut"=4

Is this possible?

Many thanks,
Ross



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 44
Default IF statement problem

That seems the right way, also could use a vlookup function and another table

"Special-K" wrote:


Assuming Data Are and Tank are columns A B and C isnt this just a simple
case of in column D entering the formula

=IF(B1="Hp",1,IF(B1="Lp",2,IF(B1=Shut",3,IF(B1="Te st",4,"UNKNOWN"))))

Then copy the formula down the D column

(Im sure theres a simpler formula to use to produce this)


--
Special-K
------------------------------------------------------------------------
Special-K's Profile: http://www.excelforum.com/member.php...fo&userid=7470
View this thread: http://www.excelforum.com/showthread...hreadid=561109




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default IF statement problem


=IF(ISNA(LOOKUP(A1,{"Hp","Lp","Test","Shut"},{1,2, 3,4})),"",LOOKUP(A1,{"hp","lp","Test","Shut"},{1,2 ,3,4}))

HTH

"Ross" wrote:

Hi,

I'm trying to make up an IF statement but not having much luck, my table reads

Date Area Tank
1/1/06 A Hp
1/1/06 B Lp
2/1/06 A Lp
2/1/06 B Shut
2/1/06 C LP
2/1/06 G Test

I want to have in the formula cell a statement that returns four different
numbers for the four possible text.

i.e: If the data cell in tank reads "Hp" then the formula cell reads "1" or
if the data cell reads "Lp" the formula cell reads "2" and so forth for all
four options so that "Test"=3 and "Shut"=4

Is this possible?

Many thanks,
Ross

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default IF statement problem

I obviously misunderstood LOOKUP ( my poor excuse is I don't use it!) so
Roger's is the correct way. Sorry!

"Toppers" wrote:


=IF(ISNA(LOOKUP(A1,{"Hp","Lp","Test","Shut"},{1,2, 3,4})),"",LOOKUP(A1,{"hp","lp","Test","Shut"},{1,2 ,3,4}))

HTH

"Ross" wrote:

Hi,

I'm trying to make up an IF statement but not having much luck, my table reads

Date Area Tank
1/1/06 A Hp
1/1/06 B Lp
2/1/06 A Lp
2/1/06 B Shut
2/1/06 C LP
2/1/06 G Test

I want to have in the formula cell a statement that returns four different
numbers for the four possible text.

i.e: If the data cell in tank reads "Hp" then the formula cell reads "1" or
if the data cell reads "Lp" the formula cell reads "2" and so forth for all
four options so that "Test"=3 and "Shut"=4

Is this possible?

Many thanks,
Ross

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
I'm having a really strange problem with 3 if statements. Marc Excel Worksheet Functions 4 April 5th 06 02:36 PM
If Statement linked to cell with VLOOKUP problem - getting wrong v Mike R. Excel Worksheet Functions 4 January 14th 06 02:16 PM
Fundamental problem with IF statement David F Excel Worksheet Functions 4 May 12th 05 09:34 PM
Formula Problem - If Statement Margie Excel Worksheet Functions 4 April 29th 05 10:07 PM
Excel Display Problem Bill Martin -- (Remove NOSPAM from address) Excel Discussion (Misc queries) 0 April 19th 05 05:25 PM


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