Quote:
|
Originally Posted by amwiggins
Thanks for your response.
I am creating a checklist of subsystems and applications. I am using checkboxes with the names of our major subsystem and application next to the checkboxes. When a user clicks the checkbox next to one of the main subsystems, I have coded the sheet to add cells directly below that particular subsystem, and fill the cells in with the names of associated subsystem, databases, and applications.
My problem is in referencing the location to add the new cells. I want them directly under a specific subsystem name, but that subsystem changes location whenever more cells are added. (It drops further down the list).
I thought I could do a find for the name of the subsystem associated with the checkbox, and then activate the cell containing the checkbos so I can finally have the cells inserted under whichever cell that turns out to be. Would this be the best way to achieve this???
So my confusion comes in coding a find for the checkbox. I know I have to do a dim statement and a set statement, but the nature/purpose of the set statement is confusing me. I haven't been able to find any written material to make it clearer for me.
|
but if do that using a checkbox, how many checkboxes u need? maybe u dont know the number of subsystem u will have, it hard to decide how many checkboxes u need to declare for them.
i suggest u try using one column for the user to enter yes/no (use validation) where yes and no store somewhere on the sheet unseen column (maybe column AA)
then maybe u have column A to list your subsystem name (i m not sure where u got these names from, but it can be from access database)
and then let the user to pick yes or no for column B
after that u can use code to dectect the column last row which is not empty
then do whatever u want to do....