Hello
I got a script to build huge report with several sheets columns and Vlookups referencing many other reports.
At the end of my process, I got this :
The problem is that there's a DropDown menu on cells in columns AG and there's also a DropDown on column E, and after the Cut and Paste, column F (Formally column AG) don't keep it's DropDown and inherit the DropDown Menu from Column E.
Any Idea to fix that?
Thanks
I got a script to build huge report with several sheets columns and Vlookups referencing many other reports.
At the end of my process, I got this :
VBA Code:
Columns("AG:AG").Select
Selection.Cut
Columns("F:F").Select
Selection.Insert Shift:=xlToRight
The problem is that there's a DropDown menu on cells in columns AG and there's also a DropDown on column E, and after the Cut and Paste, column F (Formally column AG) don't keep it's DropDown and inherit the DropDown Menu from Column E.
Any Idea to fix that?
Thanks