Need help with excel and checkboxes

M

mia.nancy

I am trying to create a spreadsheet using checkbox. I want it to be
able to add the value in D3, subtract the value in E3 and put the
total amount in F3 if the checkbox is checked. If the checkbox is
unchecked, i want it to put the total value in G3. Is that possible?
If so, what would the function look like???
Please help
 
D

Dave Peterson

You could add a checkbox from the Forms toolbar.

Then assign a linked cell (out of the way somewhere).

Then put two formulas in F3 and G3 that look at this linked cell:

X3 is my linked cell in my formulas

In F3:
=if(x3<>True,"",d3-e3)

In G3:
=if(x3=True,"",d3-e3)
 
M

mia.nancy

You could add a checkbox from the Forms toolbar.

Then assign a linked cell (out of the way somewhere).

Then put two formulas in F3 and G3 that look at this linked cell:

X3 is my linked cell in my formulas

In F3:
=if(x3<>True,"",d3-e3)

In G3:
=if(x3=True,"",d3-e3)

Thanks so much. It worked.
 

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