How do you hide the value of a cell until data is keyed into anoth

A

akemeny

I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
A

akemeny

I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

Bob I said:
If(BK2="","",BK2+30)
I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
D

Dave Peterson

This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.
I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

Bob I said:
If(BK2="","",BK2+30)
I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
A

akemeny

Ok... I get it now. Thanks a bunch!!

Dave Peterson said:
This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.
I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

Bob I said:
If(BK2="","",BK2+30)

akemeny wrote:

I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
A

akemeny

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

Dave Peterson said:
This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.
I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

Bob I said:
If(BK2="","",BK2+30)

akemeny wrote:

I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
B

Bob I

If(OR(BK2="",BL2=""),"",BK2+BL2+120)

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

:

This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.
I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

:


If(BK2="","",BK2+30)

akemeny wrote:


I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
D

Dave Peterson

Another way:

=if(count(bk2:bl2)<2,"",sum(bk2:bl2,120))

(Just to be a little different.)
One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

Dave Peterson said:
This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.
I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

:

If(BK2="","",BK2+30)

akemeny wrote:

I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
C

cashnic

This post helped me TREMENDOUSLY. However, I have another variation:

so I'm using the formula =IF(B10="","",B10+14) and that works good.
But to really be accurate with my dates, I need to calculate a date that's
10 business days in the future using the WORKDAY function, AND how to make
that formula not appear on my spreadsheet until a value is entered. Can you
help?

Bob I said:
If(OR(BK2="",BL2=""),"",BK2+BL2+120)

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

:

This means that you put a formula in the other cell--but it evaluates to what
looks like an empty cell until you put something in BK2.

akemeny wrote:

I truely have no idea what that means. I know how to create the formula, but
I need to know how to make that formula not appear on my spreadsheet until a
value is entered into (what I'm calling) BK2.

:


If(BK2="","",BK2+30)

akemeny wrote:


I have a very elaborate spreadsheet that is used by most of the people in my
office. I have three columns that contain formulas that calculate 30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30). Before a
date is entered into [bk2] the date that is displayed is a standard date
1/30/00. I know that you can hide anything that has a zero in that column,
but how do you hide that date until an actual date is keyed into [bk2]? Is
that even possible?
 
T

T. Valko

Try this:

=IF(B10="","",WORKDAY(B10,10))

Format the cell as Date.

--
Biff
Microsoft Excel MVP


cashnic said:
This post helped me TREMENDOUSLY. However, I have another variation:

so I'm using the formula =IF(B10="","",B10+14) and that works good.
But to really be accurate with my dates, I need to calculate a date that's
10 business days in the future using the WORKDAY function, AND how to make
that formula not appear on my spreadsheet until a value is entered. Can
you
help?

Bob I said:
If(OR(BK2="",BL2=""),"",BK2+BL2+120)

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

:


This means that you put a formula in the other cell--but it evaluates
to what
looks like an empty cell until you put something in BK2.

akemeny wrote:

I truely have no idea what that means. I know how to create the
formula, but
I need to know how to make that formula not appear on my spreadsheet
until a
value is entered into (what I'm calling) BK2.

:


If(BK2="","",BK2+30)

akemeny wrote:


I have a very elaborate spreadsheet that is used by most of the
people in my
office. I have three columns that contain formulas that calculate
30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30).
Before a
date is entered into [bk2] the date that is displayed is a standard
date
1/30/00. I know that you can hide anything that has a zero in that
column,
but how do you hide that date until an actual date is keyed into
[bk2]? Is
that even possible?
 
C

cashnic

works perfectly, thank you!!

T. Valko said:
Try this:

=IF(B10="","",WORKDAY(B10,10))

Format the cell as Date.

--
Biff
Microsoft Excel MVP


cashnic said:
This post helped me TREMENDOUSLY. However, I have another variation:

so I'm using the formula =IF(B10="","",B10+14) and that works good.
But to really be accurate with my dates, I need to calculate a date that's
10 business days in the future using the WORKDAY function, AND how to make
that formula not appear on my spreadsheet until a value is entered. Can
you
help?

Bob I said:
If(OR(BK2="",BL2=""),"",BK2+BL2+120)


akemeny wrote:

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

:


This means that you put a formula in the other cell--but it evaluates
to what
looks like an empty cell until you put something in BK2.

akemeny wrote:

I truely have no idea what that means. I know how to create the
formula, but
I need to know how to make that formula not appear on my spreadsheet
until a
value is entered into (what I'm calling) BK2.

:


If(BK2="","",BK2+30)

akemeny wrote:


I have a very elaborate spreadsheet that is used by most of the
people in my
office. I have three columns that contain formulas that calculate
30, 60 &
120 days from the date keyed into a specific column (ie: =bk2+30).
Before a
date is entered into [bk2] the date that is displayed is a standard
date
1/30/00. I know that you can hide anything that has a zero in that
column,
but how do you hide that date until an actual date is keyed into
[bk2]? Is
that even possible?
 
T

T. Valko

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


cashnic said:
works perfectly, thank you!!

T. Valko said:
Try this:

=IF(B10="","",WORKDAY(B10,10))

Format the cell as Date.

--
Biff
Microsoft Excel MVP


cashnic said:
This post helped me TREMENDOUSLY. However, I have another variation:

so I'm using the formula =IF(B10="","",B10+14) and that works good.
But to really be accurate with my dates, I need to calculate a date
that's
10 business days in the future using the WORKDAY function, AND how to
make
that formula not appear on my spreadsheet until a value is entered.
Can
you
help?

:

If(OR(BK2="",BL2=""),"",BK2+BL2+120)


akemeny wrote:

One more Question.....

How would I word that if I wanted to do more than one column. IE:
BK2+BL2+120

:


This means that you put a formula in the other cell--but it
evaluates
to what
looks like an empty cell until you put something in BK2.

akemeny wrote:

I truely have no idea what that means. I know how to create the
formula, but
I need to know how to make that formula not appear on my
spreadsheet
until a
value is entered into (what I'm calling) BK2.

:


If(BK2="","",BK2+30)

akemeny wrote:


I have a very elaborate spreadsheet that is used by most of the
people in my
office. I have three columns that contain formulas that
calculate
30, 60 &
120 days from the date keyed into a specific column (ie:
=bk2+30).
Before a
date is entered into [bk2] the date that is displayed is a
standard
date
1/30/00. I know that you can hide anything that has a zero in
that
column,
but how do you hide that date until an actual date is keyed into
[bk2]? Is
that even possible?
 

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

Top