employee review

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I kow how to do the formulas in Excel to get the calculations I need but,
being unfamiliar with Access, I am not sure how to go about doing the same
thing. I want to set up a database of employees that keeps track of date of
hire, date of promotion, date of 30 day, 90 day, and annual review. I do not
know what functions in access will do the IF function in excel.

Any help/guidance anyone can offer will be appreciated.

Thanks in advance
 
In a query, use IIf to provide the same functionality as Excel's IF.
 
I kow how to do the formulas in Excel to get the calculations I need but,
being unfamiliar with Access, I am not sure how to go about doing the same
thing. I want to set up a database of employees that keeps track of date of
hire, date of promotion, date of 30 day, 90 day, and annual review. I do not
know what functions in access will do the IF function in excel.

Any help/guidance anyone can offer will be appreciated.

Thanks in advance

IIF() is probably the first solution, as Douglas suggests.

HOWEVER... be sure you don't try to implement spreadsheet
functionality in Access. Excel is a spreadsheet; Access is a
relational database, and they require *DIFFERENT* logic and designs.
Just for example, your tables should certainly NOT contain calculated
projected review dates - they should instead be calculated on the fly
in Queries.

John W. Vinson[MVP]
 

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