Stupid Excel Question

SDogo

Not as good as I once was but as good once as I ev
Messages
13,900
Reaction score
6
Working on the draft spreadsheet and I'm trying to create a "value" column which in essence subtracts the selection value of a prospect from the rank value of the prospect.

For Example:

Mark Barron is ranked 12th, the Cowboys select him at 14. The value would be +2.

12 is the rank value, 14 is the selection value

I created the formula, that part was easy but the problem I'm having is that every cell in the "value" column before the selection value is entered shows a negative value.

Is there any way I can hide the values until data is entered into the selection field?

I have no idea if this makes any sense........lol
 

Cajuncowboy

Preacher From The Black Lagoon
Messages
27,499
Reaction score
81
SDogo;4514988 said:
Working on the draft spreadsheet and I'm trying to create a "value" column which in essence subtracts the selection value of a prospect from the rank value of the prospect.

For Example:

Mark Barron is ranked 12th, the Cowboys select him at 14. The value would be +2.

12 is the rank value, 14 is the selection value

I created the formula, that part was easy but the problem I'm having is that every cell in the "value" column before the selection value is entered shows a negative value.

Is there any way I can hide the values until data is entered into the selection field?

I have no idea if this makes any sense........lol

I can't answer your question but I want a copy of this when it's done.

:D
 

rocboy22

Active Member
Messages
1,613
Reaction score
0
use this formula for the value:

=IF(A2<=0,"", A2-B2)

where A2 is the draft spot and B2 is the grade
 

BrAinPaiNt

Mike Smith aka Backwoods Sexy
Staff member
Messages
78,756
Reaction score
43,263
CowboysZone ULTIMATE Fan
If you right click on the cell, click on format cells, in the numbers tab does it show up as general?
 

SDogo

Not as good as I once was but as good once as I ev
Messages
13,900
Reaction score
6
rocboy22;4515024 said:
use this formula for the value:

=IF(A2<=0,"", A2-B2)

where A2 is the draft spot and B2 is the grade

This is actually what I got to work: =IF(COUNT(C7,F10)<2, "", C7*F10)

I wanna try yours though because I'm anal and need to understand why. lol
 

Denim Chicken

Well-Known Member
Messages
15,702
Reaction score
24,667
Use conditional fomating to make your value cells text white or whatever matchs your background so you cant see it. Format-conditional formatting, make cell value condition less that 0 and click on the Format button and choose white or whatever for the font color.
 

SDogo

Not as good as I once was but as good once as I ev
Messages
13,900
Reaction score
6
theogt;4515000 said:
Why do they show negative values?

Because it's taking the selection value which is "0" until a value is entered and subtracting it from the rank value.

0- anything is negative. 0-1=-1, 0-2=-2.....so on
 

SDogo

Not as good as I once was but as good once as I ev
Messages
13,900
Reaction score
6
Denim Chicken;4515036 said:
Use conditional fomating to make your value cells text white or whatever matchs your background until data is entered. Format-conditional fromating, make cell value condition less that 0 and click on the Format button and choose white or whatever for the font color.


That was the other option. lol
 

SDogo

Not as good as I once was but as good once as I ev
Messages
13,900
Reaction score
6
Cajuncowboy;4514994 said:
I can't answer your question but I want a copy of this when it's done.

:D

Did you get one the first time?
 
Top