Help writing an IF function

C

Cleta

I need to write an IF function to determine the social
sec. tax in cell G4

if social sec. tax * Gross pay + YTD Soc. sec. > Maximum
Soc. Sec., then Mazimum Soc. Sec. _ YTD soc. Sec.,
otherwise Soc. Sec. Tax * Gross Pay

I am completely lost on this one. I started it and
didn't know how or what to enter for Maximum Soc. Sec.

=IF (G4*D4+E4)> this is where I am stuck. Can someone
tell me how to do this.
Thanks Cleta
 
N

Nick Hodge

Cleta

You can either enter a value or a cell reference that holds the value. The
latter is preferable as it may change and then you change it once.

=IF((G4*(D4+E4))>$A$1,Do this, else do this)

The value goes in cell A1 or where ever else you want it. The $ make it
always refer to that 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

Similar Threads

Calculations Using the =IF formula 3
Duplicate Entries 3
Payroll equation for SS taxes 2
federal tax tables 3
Help with function/formula please!!! 7
Help with a formula 2
if formulas 2
Function Help 3

Top