I always believe if you want to learn Vba and not just come here wanting a script written for you. And then you have no ideal what the script is doing you just know what it does you may never really learn how to write your own scripts.
So i think it's best to start out with small projects just like the one you just mentioned.
I was happy the first time I was able to write code to have the word George show up on the screen.
So I suggesting starting with small projects first and work into more complex projects.
But if your in a hurry and just want someone to write you a script to do a certain task that's OK also but if you cannot understand the code it may not help you to learn to do things on your own.
Like: Cells(1,1). value="George"
That seems simple to read in my opinion.
you should know what a cell is
And 1,1 means row 1 column 1
And so on.
Excel Vba uses a lot of simple terms in my opinion.
You should understand what a Workbook is a Sheet is a row is a column is
If you do not understand those terms you should start there.
Other terms like Activate seem easy to understand.
Or: Sheets("George").cells(1,1).Value="George" seems simple.
Now something like:
[A1]="George" may not jump out at you
[A1] is the same as saying Cells(1,1)
Now some people may want to say using one or the other is .00004 milliseconds faster.
So I would try starting with simple projects and write simple code and look and learn.
I always believe in writing simple code that maybe others can understand and learn from even if it is slower.
One or two seconds does not slow me down. I'm not in that big a hurry.
I believe in the old saying:
It's better to: Teach a man to fish then to fish for him.
Wishing you a nice day.