Checkboxes

  • Thread starter Thread starter Trish
  • Start date Start date
T

Trish

Good Day.

This is what I would like to do.

I have a number in cell A1
I have a check box in cell B1
When the box is checked I would like the number from A1 inserted into cell C1.

Can this be done?
 
Hi
enter the following in C1 (if B1 is the linked cell for your checkbox)
=IF(B1,A1,"")
 
Back
Top