Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding code to new excel sheet dynamically

I need some help Regarding VBA. In My code I add an excel sheet and rename it and add a validation list to it.I need to run some code on changing value in that validation list.And that must run only on change of that particular cell. If I am not clear please let me know.Please Help me solving this.

like image 406
krishna Avatar asked Feb 26 '13 06:02

krishna


1 Answers

Instead of trying to create the individual code for each new worksheet with the Visual Basic Extensibility (see this link for further reading), simply use the Workbook wide event Workbook_SheetChange (you need to place it in the ThisWorkbookmodule).

In this event code first check, if the worksheet which caused the event is one of the newly created worksheets. This can be done most easily, be checking the .Name of the worksheet.

like image 114
Peter Albert Avatar answered Oct 13 '22 23:10

Peter Albert