I'm learning VBA and I want to create a ProjectUpdate for the Council.
I have long list in Column A in 'Summary' sheet and project update in 'George' sheet where they choose the project names in drop down list box.
Now, what codes will I put in, that whatever the name of the project they choose in list box, it will automatically activate the cell in Column A in 'Summary' sheet?
This is the code I've put in where they click on one of the color circle in 'George' sheet that represent the time of budget like red is alert, yellow is ok & green is good.
But at the moment, I just want to know how to activate the cell in 'Summary' sheet that match the list box in A4 cell in 'George' street so the color can automatically be filled in the cell next to the matched name in 'Summary' sheet![]()
Sub LightsSecond1() If ActiveSheet.Shapes("Oval 124").Select Then Else ActiveSheet.Shapes.Range(Array("Oval 125", "Oval 127")).Select Selection.ShapeRange.Fill.Visible = msoFalse Range("h27").Select End If Sheets("Summary").Select Range("h7").Select With Selection.Interior .ColorIndex = 3 .Pattern = xlSolid End With Sheets("George").Select Range("b25").Select End Sub
This is 'George' sheet
Project.jpg
and this is the 'Summary' sheet where the color will automatically filled in next to matched project whenever they click on buttons in 'George' sheet
Project2.jpg
Please ask any questions if you want more information. I'm doing my best to explain the situation, Thank you
Bookmarks