World cup spreadsheet help

D

devonpie

Hello

I am a primary school teacher and my 10 year olds ( the brighter ones
have been working on creating a world cup scoresheet. We have come u
against a problem however and I will try my best to explain this. W
have used if functions to get a league table going and it all works an
updates correctly. One problem - when the scores are blank the leagu
table thinks that these are all 0-0 draws and each team starts with
draws. I can't work my way round it because I don't know excel wel
enough. HELP
 
G

Guest

Hi,
Not really sure of your question, but....

If you have an IF statement in B1 and you want to test whether cell A1 is
empty, you would use something like:

=IF(A1="","",your desired output here)

This code will leave cell B1 empty if A1 is empty.
 
B

Bearacade

a bit hard to help without the fuctions you are using.

But trying the ISBLANK() and ISNUMBER() functions.

I put an example you can look at:

=IF(ISBLANK(A1),"blank", IF(ISNUMBER(A1), IF(A1=0, "0 is the score", A1
& " is the score"), "Nonnumeric entry detected"))

So to break it down, it first check to see

is A1 blank?

if yes, display the word "blank"
If no then find out if A1 is a number?

If yes, is A1 a 0?
If no display Nonnumeric entry detected

If A1 is a 0, display 0 is the score,
If A1 is a number and higher than 0, display the number as the score

I put it all together so that you can see how each part works. If you
have any more questions, don't hesitate to ask
 
G

Guest

I have produced a World Cup spreadsheet; if you are interested, I can post to
you.
 
D

devonpie

I f someone has msn messenger, please add me at (e-mail address removed)
and talk me through how to do this. Would be most grateful and would
make some kids happy tomorrow.

Cheers
 
B

Bearacade

I don't have MSN, but if you want to send me an email
(e-mail address removed), or send me the spreadsheet, I will be glad to
help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top