Daily Updating

  • Thread starter Thread starter Matt Russell
  • Start date Start date
M

Matt Russell

I am auto-updating a daily productivity sheet for employees, and I
need to know how to do the following:

=IF($B$1<1,"",IF($B$1=1,VLOOKUP($A4,$A$3:$B$68,2,FALSE),????????))

I need to know what I can put in the ???????????????? part for the
false statement in order to have the value that is currently stored in
the cell remain the same, without creating a circular reference. Is
that possible?
 
I am auto-updating a daily productivity sheet for employees, and I
need to know how to do the following:

=IF($B$1<1,"",IF($B$1=1,VLOOKUP($A4,$A$3:$B$68,2,FALSE),????????))

I need to know what I can put in the ???????????????? part for the
false statement in order to have the value that is currently stored in
the cell remain the same, without creating a circular reference. Is
that possible?

Not with a formula (unless someone knows different!) but as this is a
programming group, do it with VBA - use the OPEN event of the workbook
(presumably) and test the value of B1 to set the appropriate value or
formula in your cell
 

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

Back
Top