papi1992
papi1992

Reputation: 168

How can I use my defined name of range in VBA Excel?

I have some defined names in Excel's name manager. For example like these:

For example these:

I want to use them in my VBA code, but I don't know how. Could anyone here help me?

Upvotes: 1

Views: 186

Answers (1)

Anastasiya-Romanova 秀
Anastasiya-Romanova 秀

Reputation: 3368

Try Range("salaries") or Sheet1.Range("salaries").

Upvotes: 5

Related Questions