Conditional Formula

J

juanpablo

Hi,

I need to have an option (like a square selection box) on Column B, when the
square box is ticked, then the value adjacent needs to be multiplied by 5%,
if not selected then copy the same value.

A B C
1 100 (selected) 105
2 100 (not selected) 100
3
 
P

Pete_UK

Assuming you put an x or X in column B to indicate that it is
selected, then put this in C1:

=IF(B1="x", A1*1.05,A1)

and copy this down as required.

Hope this helps.

Pete
 
L

Luke M

Using an actual 'check box' from the forms toolbar, you'll need to link the
checkbox to a cell somewhere (probably hidden, lets say Z1)
formula would be
=A1+0.05*Z1*A1
Note that each check box would need to be linked to a seperate cell.

If you're content to simply put an "X" in the cell, then you can use
=IF(B1="X",A1*1.05,A1)
 

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

Top