Question about Macro

Copper Contributor

Hello,

I try to run a Macro to show hidden name, but it gives me this error message. What should I do?

1 Reply

@Zacfin 

1) The code is in the worksheet module of T4; it should be in a standard module (the kind that you create by selecting Insert > Module in the Visual Basic Editor).

2) A macro should begin with a line

 

Sub name_of_the_macro()

 

but that line is missing from your code.