Spreadsheet Formula Needed

JoAnnColorado

New member
Joined
Dec 15, 2014
Messages
3
Reaction score
0
Points
0
I need a forumla as follows:

If column A says "W", then enter into column "U" the amount in column "J"

If column A says "H", then enter into column "V" the amount in column "J"

If column A says "S", then enter into column "U" the amount in column "J" divided in half

I'm attaching an example of what I mean.

Jo Ann
 

Attachments

  • Example spreadsheet 12 15 14.xls.pdf
    63.3 KB · Views: 19
in U2:

=IF(A2="W",J2,IF(A2="S",J2/2,""))

in V2:

=IF(A2="H",J2,"")
 
The formula works great, but can you add one more part in U2?

If column A2 is W, enter amount in J2, If column A2 is H, enter 0, if column A2 is S, divide column J2 by 2

Many thanks for you help !!!

in U2:

=IF(A2="W",J2,IF(A2="S",J2/2,""))

in V2:

=IF(A2="H",J2,"")
 
Last edited:
Try:

=IF(A2="W",J2,IF(A2="H",0,IF(A2="S",J2/2,"")))
 
Back
Top