#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Dart Scoring table

I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows 301
thru all of row B. Is there a way to hide the 301 in column B until a score
is posted in column A?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Dart Scoring table


"LCBO" wrote in message
...
I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows
301
thru all of row B. Is there a way to hide the 301 in column B until a
score
is posted in column A?



=IF(cellvalue=301, "", yourcalculation)


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Dart Scoring table


"John Smith" wrote in message
...

"LCBO" wrote in message
...
I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows
301
thru all of row B. Is there a way to hide the 301 in column B until a
score
is posted in column A?



=IF(cellvalue=301, "", yourcalculation)


Or alternately, a better way is to have scores in the relevant row of B when
you input a deduction, and nothing below, put your starting score of 301 in
cell A1 and start deducting in A2 so in cell B2 =IF(A2="", "", $A$1-A2).
Then cluck and drag the square to copy it down so in B3 =IF(A3="", "",
$A$1-A3), etc


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Dart Scoring table

Thanks John
I input =IF(A2="", "", $A$1-A2) into B2, 301 into A1. Put in 100 in A2 and
got 201 in B2...perfect! But when I input =IF(A3="", "", $A$1-A3) into B3 and
100 in A3 I get 201 again. It isn't subtracting from 201 which should be 101
in B3

"John Smith" wrote:


"John Smith" wrote in message
...

"LCBO" wrote in message
...
I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows
301
thru all of row B. Is there a way to hide the 301 in column B until a
score
is posted in column A?



=IF(cellvalue=301, "", yourcalculation)


Or alternately, a better way is to have scores in the relevant row of B when
you input a deduction, and nothing below, put your starting score of 301 in
cell A1 and start deducting in A2 so in cell B2 =IF(A2="", "", $A$1-A2).
Then cluck and drag the square to copy it down so in B3 =IF(A3="", "",
$A$1-A3), etc


.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Dart Scoring table


"LCBO" wrote in message
...
Thanks John
I input =IF(A2="", "", $A$1-A2) into B2, 301 into A1. Put in 100 in A2 and
got 201 in B2...perfect! But when I input =IF(A3="", "", $A$1-A3) into B3
and
100 in A3 I get 201 again. It isn't subtracting from 201 which should be
101
in B3


Yes, my mistake, remove the $ signs before the A and the 1




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,494
Default Dart Scoring table

you can put this in B2 and copy down

=IF(A2="","",$A$1-SUM($A$2:$A2))

but i'm not sure what you want when you get to negative numbers because i don't
play darts
--


Gary Keramidas
Excel 2003


"LCBO" wrote in message
...
Thanks John
I input =IF(A2="", "", $A$1-A2) into B2, 301 into A1. Put in 100 in A2 and
got 201 in B2...perfect! But when I input =IF(A3="", "", $A$1-A3) into B3 and
100 in A3 I get 201 again. It isn't subtracting from 201 which should be 101
in B3

"John Smith" wrote:


"John Smith" wrote in message
...

"LCBO" wrote in message
...
I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows
301
thru all of row B. Is there a way to hide the 301 in column B until a
score
is posted in column A?


=IF(cellvalue=301, "", yourcalculation)


Or alternately, a better way is to have scores in the relevant row of B when
you input a deduction, and nothing below, put your starting score of 301 in
cell A1 and start deducting in A2 so in cell B2 =IF(A2="", "", $A$1-A2).
Then cluck and drag the square to copy it down so in B3 =IF(A3="", "",
$A$1-A3), etc


.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Dart Scoring table


"Gary Keramidas" <GKeramidasAtMSN.com wrote in message
...
you can put this in B2 and copy down

=IF(A2="","",$A$1-SUM($A$2:$A2))

but i'm not sure what you want when you get to negative numbers because i
don't play darts


I don't think they go to negative numbers because you need an exact score to
go out, ending on a double.


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Dart Scoring table

Nope still didn't work John but thanks.
Gary's did and ty much for the help!!

"LCBO" wrote:

I've made an auto dart scoring sheet. In column A I have the dart score
input, in column B it auto subtracts that score from the set amount. The
problem is if I use say 301 as the start score in column A column B shows 301
thru all of row B. Is there a way to hide the 301 in column B until a score
is posted in column A?

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 would lke to create a league table for my local dart team mauricemarron Excel Discussion (Misc queries) 3 October 14th 09 03:53 PM
golf scoring raynerman Excel Discussion (Misc queries) 6 August 2nd 08 09:40 PM
Scoring function not quite right? Simon Lloyd Excel Worksheet Functions 3 May 10th 06 07:46 PM
score sheets501 dart game sis2 Excel Discussion (Misc queries) 0 January 4th 05 01:37 AM


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