Formula Help

M

meganblf

I have created a spreadsheet that we are using to prepare 2 different tax
returns. The spread sheet contains information on properties with 4 possible
values. We are also trying to allocate these properties into two different
trusts. I don't want to split up the information as it all relates to each
other. It has been along time since I have worked with formulas in excell.
Could anyone help me prepare a formula.

Example:
a b c d
e f g
1 01 Value 1 O1 Value 2 09 Value 1 09 Value 2
Trust 1 Trust2
2 property 1 10000
X
3 Property 1
20000
4 Property 2 10000
x

What I want is a formula if F2=X then add B2 or C2
 
S

Sean Timmons

Is that add B2 and C2?

Presuming you want to sum all of them..

=SUMIF(F:F,"X",B:B) gets B. Same with C for C. If you want to do one row at
a time, then =IF(F2,"X",B2+C2) perhaps?
 
S

Sean Timmons

Or not.. =IF(F2="X",B2+C2)

Sean Timmons said:
Is that add B2 and C2?

Presuming you want to sum all of them..

=SUMIF(F:F,"X",B:B) gets B. Same with C for C. If you want to do one row at
a time, then =IF(F2,"X",B2+C2) perhaps?
 

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

Help with formula 3
Formula Array Help in VBA 3
help with formula 1
Formula and Formating Help 5
VBA Formula Help 6
index/if function 0
formula problem 2
Can a formula do this? 1

Top