Changing a employees Status Date!

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hope someone out there can help!
I have created a six page spreadsheet, which in turn
prints out two separate reports.
On one page, if a cell on page 1 contains a Y, then the
cell on page 6 should remain blank. If the cell on page 1
is blank, then the cell on page 6 should contain the date
that is listed next to the cell on page 1.
Basically its to change an employees status date.
Everything I try gives me error codes.

Thanks

Steve
 
Tyr this but make sure the cell in sheet 6 is in date
format.
=IF(Sheet1!A1="",Sheet1!B1,Sheet6!$A1="")
 
How are you matching the employee data from sheet1 to sheet6? If the
sheets are set up identically, and you're just referring to the same row
on sheet1, you could use a formula like:

=IF(Sheet1!A2="Y","",Sheet1!B2)

If you're using a VLookup to find the data:


=IF(VLOOKUP(A2,Sheet1!$A$2:$B$25,2,0)="Y","",VLOOKUP(A2,Sheet1!$A$2:$C$25,3,0))
 

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