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

IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default IF FORMULAS

Maybe this but it depends on how many "and so ons" you have.

=10-C1

Biff

"pADDY qUIGLEY" <pADDY wrote in message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default IF FORMULAS

One way:

Try this in D1:

=CHOOSE(C1,9,10,11,12,13,14,15)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"pADDY qUIGLEY" <pADDY wrote in message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.


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

If the sequence carries on in the same way then will this do what you want?

=10-C1
--
HTH

Sandy
In Perth, the ancient capital of Scotland


with @tiscali.co.uk


"pADDY qUIGLEY" <pADDY
wrote in message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default IF FORMULAS

Sorry,

if a1 = 1 then b1 = 9, if a1 =2 then b1 = 8, if a1 = 3 then b1 = 7, if a1 =
4 then b1 =6, if a1 = 5 then b1 = 5, if a1 = 6 then b1 = 4, if a1 = 7 then b1
= 3, if a1 = 8 then b1 = 2, if a1 = 9 then b1 = 1. it's points for positions
in a compition.

Many thanks for your help

Paddy

"Biff" wrote:

Maybe this but it depends on how many "and so ons" you have.

=10-C1

Biff

"pADDY qUIGLEY" <pADDY wrote in message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default IF FORMULAS

Ok.....

In B1 enter this formula:

=10-A1

Biff

"pADDY qUIGLEY" wrote in message
...
Sorry,

if a1 = 1 then b1 = 9, if a1 =2 then b1 = 8, if a1 = 3 then b1 = 7, if a1
=
4 then b1 =6, if a1 = 5 then b1 = 5, if a1 = 6 then b1 = 4, if a1 = 7 then
b1
= 3, if a1 = 8 then b1 = 2, if a1 = 9 then b1 = 1. it's points for
positions
in a compition.

Many thanks for your help

Paddy

"Biff" wrote:

Maybe this but it depends on how many "and so ons" you have.

=10-C1

Biff

"pADDY qUIGLEY" <pADDY wrote in
message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO
ON.






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default IF FORMULAS


use a lookup table


--
robert111
------------------------------------------------------------------------
robert111's Profile: http://www.excelforum.com/member.php...o&userid=31996
View this thread: http://www.excelforum.com/showthread...hreadid=561209

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default IF FORMULAS

Thankyou very much indeed. Can you please help again?

I forgot to ask if C1 is left blank. How do I get d1 to show as a zero
score?

Once again many thanks for your info.

Paddy

"Ragdyer" wrote:

One way:

Try this in D1:

=CHOOSE(C1,9,10,11,12,13,14,15)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"pADDY qUIGLEY" <pADDY wrote in message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO ON.



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default IF FORMULAS

Try this:

=IF(C1<"",CHOOSE(C1,9,10,11,12,13,14,15),0)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"pADDY qUIGLEY" wrote in message
...
Thankyou very much indeed. Can you please help again?

I forgot to ask if C1 is left blank. How do I get d1 to show as a zero
score?

Once again many thanks for your info.

Paddy

"Ragdyer" wrote:

One way:

Try this in D1:

=CHOOSE(C1,9,10,11,12,13,14,15)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"pADDY qUIGLEY" <pADDY wrote in
message
...
IF C1=1 THE D1 = 9, IF C1= 2 THEN D1 = 8, IF C1=3 THEN D1 =7 OAND SO
ON.




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
How to change column letters to correct ones in many formulas automatically? Dmitry Kopnichev Links and Linking in Excel 7 October 13th 05 09:52 PM
how can i get formulas in excel to copy and paste? bman Excel Worksheet Functions 1 October 3rd 05 04:15 PM
How to make Excel run limited number of formulas on a given worksh John Excel Discussion (Misc queries) 0 January 12th 05 04:29 PM
Way to make Excel only run certain formulas on a worksheet? jrusso Excel Discussion (Misc queries) 0 January 12th 05 04:23 PM
calculating formulas for all workbooks in a folder Chad Excel Worksheet Functions 3 November 13th 04 05:22 PM


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