How do I get a cell to auto fill if a check box on a different sheet has been selected?

Wulf

Active Member
Joined
Dec 1, 2004
Messages
395
Office Version
  1. 365
Platform
  1. Windows
Sheet 1 = "COS". About 40% of the data on this sheet will transfer to the next sheet. How do I get a cell on the sheet 2 to auto fill if a check box on a sheet 1 has been selected?

Thanks!
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
When you say "...if a check box on [a] sheet 1 has been selected" do you mean if the check box has been ticked ?

If yes, then it is fairly straightforward to use a formula that refers to the cell link for the check box.

For example, let's say the check box uses cell A1 as its cell link.

Code:
=if(A1=TRUE,"TEXT","")

This will show the word "TEXT" if the check box has been ticked, and will be blank if the check box is unticked.
 
Upvote 0
When you say "...if a check box on [a] sheet 1 has been selected" do you mean if the check box has been ticked ?

If yes, then it is fairly straightforward to use a formula that refers to the cell link for the check box.

For example, let's say the check box uses cell A1 as its cell link.

Code:
=if(A1=TRUE,"TEXT","")

This will show the word "TEXT" if the check box has been ticked, and will be blank if the check box is unticked.

Trying to figure out how to make this work....where do I plug this formula in?
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

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