Have a value from on cell insert in a second cell

Ferrydriver

New Member
Joined
Mar 11, 2020
Messages
26
Office Version
  1. 2007
Platform
  1. Windows
The setup:
Three Cells A1 A2 A3

A1 has value $0.00
A2 is a form control 'Tax' with a click on/off button box
A3 contains a set dollar amount $200.00

Goal:
To transfer the $200.00 into cell A1 if A2 is clicked 'on'
If A2 is not clicked or clicked 'off', A1 remains $0.00

Problem:
Probably the wrong route :(
I placed a format control button in A2 with cell link A2
I have tried an =IF satement
=IF(A2=FALSE,A1=0,A3)

When the button is 'on' the $200.00 is shown in A1
When the button is 'off' A1 shows 'FALSE'
I would like A1 to show $0.00 not 'FALSE'
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Welcome to Mr Excel, Ferrydriver :)

You don't need the A1= part, just the 0 =IF(A2=FALSE,0,A3)

By using A1=0, you're asking the formula if A1=0, not telling it that you want it to =0.
 
Upvote 0
Welcome to Mr Excel, Ferrydriver :)

You don't need the A1= part, just the 0 =IF(A2=FALSE,0,A3)

By using A1=0, you're asking the formula if A1=0, not telling it that you want it to =0.
Thank you jasonb75! Works like a charm!
 
Upvote 0

Forum statistics

Threads
1,213,482
Messages
6,113,913
Members
448,532
Latest member
9Kimo3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top