Jul 16 2023 03:23 PM
Hi yall!
I am making an inventory of my belongings so I can make a packing list for college. There are two columns of checkboxes, one for whether or not an item is going to college, and whether or not it has been packed yet. Is it possible for the second column to appear in a row only when the first is selected? Like if I select that an item is going to college, could the checkbox on whether it is packed or not appear? I dont want the second column of checkboxes to be available on rows where an item isn't going with me.
Also, is it possible to center a checkbox in a cell? One more, is it possible to link checkboxes to rows so that when I drag down extra rows to the table, the checkboxes are added in the correct columns?
I know this is a lot of questions, but I appreciate any help! Thank you guys !!
Jul 16 2023 04:36 PM
Jul 16 2023 11:34 PM
If I got it right from your text, here is how to accomplish it:
(If what is meant is not what you want, then like the previous user suggested, I recommend giving a bit more and more specific information about your project.)
=$A2=TRUE
This formula assumes that the checkbox in column A for the same row is selected.
By following these steps, you should be able to have the second column of checkboxes appear based on the selection in the first column, center the checkboxes within cells, and easily add checkboxes to new rows by dragging. The text and the steps are the result of various AI's put together.
My answers are voluntary and without guarantee!
Good luck with your college packing list!
Jul 21 2023 08:09 AM
Jul 21 2023 08:12 AM
Jul 21 2023 02:00 PM
Jul 22 2023 08:34 AM
The method I provided for showing the second column of checkboxes based on the selection in the first column may not work directly with tables in Excel. Conditional formatting behaves differently when applied to tables compared to regular cell ranges.
Instead, let us try a different approach using the "IF" function and cell references to achieve the desired functionality.
Here is how you can do it:
Assume you have the checkboxes in columns A and B of a table. Column A contains the checkboxes for whether an item is going to college, and column B will contain checkboxes for whether the item has been packed.
By using this method, you can avoid the conditional formatting limitation with tables and achieve the desired functionality of showing the second column of checkboxes based on the selection in the first column. Remember to adjust the cell references as needed to fit your specific table range.
Additionally, regarding centering checkboxes within cells, unfortunately, it's not directly possible to center them using the native "Form Controls" checkboxes. However, you can use ActiveX checkboxes instead, which provide more formatting options and can be centered. To use ActiveX checkboxes, you'll need to enable the "Developer" tab in Excel and insert the checkboxes from there.
To enable the "Developer" tab, follow these steps:
Once the "Developer" tab is enabled, you can insert ActiveX checkboxes and adjust their alignment within cells. The text and the steps are the result of various AI's put together.
My answers are voluntary and without guarantee!
Hope this will help you.