Excel Formula

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

Guest

how i create a formula in worksheet to change (weekly gross pay) Cell 'A"
into Cell 'B' (year to date) that should multiplies every week pay.
 
This only works if each week's pay is the same for the year. Assuming weekly
gross pay in cell A1, then in B1:
=A1*WEEKNUM(DATE(YEAR(NOW()),MONTH(NOW()),DAY(NOW())),1)

use ,1) at the end as shown if your weeks start on Sunday, use ,2) if your
week starts on Monday.

See Excel Help on WEEKNUM() for more information about it. If this function
is not available, and returns the #NAME? error, install and load the Analysis
ToolPak add-in.
 

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