#1   Report Post  
Posted to microsoft.public.excel.misc
yhtak
 
Posts: n/a
Default "World Cup" query #2

What if the predicted score is 0-0 and the result is 1-1 - using this formula
the points score is shown as 0 but it should show as 1 (for a correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then you
get
3 points
if the predicted/actual score is incorrect but the RESULT is correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.



  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default "World Cup" query #2

=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2),C2-G2=D2-H2),
1,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"yhtak" wrote in message
...
What if the predicted score is 0-0 and the result is 1-1 - using this

formula
the points score is shown as 0 but it should show as 1 (for a

correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to

write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then

you
get
3 points
if the predicted/actual score is incorrect but the RESULT is

correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.





  #3   Report Post  
Posted to microsoft.public.excel.misc
Bernard Liengme
 
Posts: n/a
Default "World Cup" query #2

Try
=IF(AND(C2=G2,D2=H2),3,IF(C2-D2=G2-H2,1,0))
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"yhtak" wrote in message
...
What if the predicted score is 0-0 and the result is 1-1 - using this
formula
the points score is shown as 0 but it should show as 1 (for a
correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to
write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then
you
get
3 points
if the predicted/actual score is incorrect but the RESULT is correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.





  #4   Report Post  
Posted to microsoft.public.excel.misc
Bernard Liengme
 
Posts: n/a
Default "World Cup" query #2

This is what I meant to code!
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Bob Phillips" wrote in message
...
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2),C2-G2=D2-H2),
1,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"yhtak" wrote in message
...
What if the predicted score is 0-0 and the result is 1-1 - using this

formula
the points score is shown as 0 but it should show as 1 (for a

correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to

write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then

you
get
3 points
if the predicted/actual score is incorrect but the RESULT is

correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.







  #5   Report Post  
Posted to microsoft.public.excel.misc
yhtak
 
Posts: n/a
Default "World Cup" query #2

Thank for solving the problem.

"Bob Phillips" wrote:

=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2),C2-G2=D2-H2),
1,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"yhtak" wrote in message
...
What if the predicted score is 0-0 and the result is 1-1 - using this

formula
the points score is shown as 0 but it should show as 1 (for a

correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to

write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then

you
get
3 points
if the predicted/actual score is incorrect but the RESULT is

correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.








  #6   Report Post  
Posted to microsoft.public.excel.misc
yhtak
 
Posts: n/a
Default "World Cup" query #2

Thank you for taking the trouble to post the answer.

"Bernard Liengme" wrote:

Try
=IF(AND(C2=G2,D2=H2),3,IF(C2-D2=G2-H2,1,0))
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"yhtak" wrote in message
...
What if the predicted score is 0-0 and the result is 1-1 - using this
formula
the points score is shown as 0 but it should show as 1 (for a
correctresult)
can anyone help me .... the original query is as shown below.

Many thanks

"Andy" wrote:

Hi

With your actual score in C2 and D2 and your predicted score in G2 and
H2,
try something like this:
=IF(AND(C2=G2,D2=H2),3,IF(OR(AND(C2D2,G2H2),AND( C2<D2,G2<H2)),1,0))

Andy.


"yhtak" wrote in message
...
Apologies if this query has been raised before...

We are running a "predict the score" syndicate and I am trying to
write
a
fomula to generate the following points score e.g.

if the predicted score is say, 3-0 and the actual score is 3-0 then
you
get
3 points
if the predicted/actual score is incorrect but the RESULT is correct -
you
get 1 point
if the predicted score is, say 3-0 but the result is 0-3, you get 0
points.

Any assistance will be gratefully received.






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
Another "World Cup" related query yhtak Excel Discussion (Misc queries) 4 June 12th 06 07:52 PM
changing query source [email protected] Excel Worksheet Functions 2 March 21st 06 08:55 PM
AHHH! Again JAA149 Excel Discussion (Misc queries) 0 October 31st 05 11:36 AM
AHHHH-Get Data from Multiple Excel workbooks JAA149 Excel Discussion (Misc queries) 5 October 30th 05 05:19 PM
How to use a Access Query that as a parameter into Excel database query Karen Middleton Excel Discussion (Misc queries) 1 December 13th 04 07:54 PM


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