Understanding VBA code

Joek88

New Member
Joined
Aug 17, 2023
Messages
37
Office Version
  1. 2021
Platform
  1. Windows
Can someone explain to me what the highlighted (in yellow) mean? I am having a difficult time with understanding the code and how it is working.

I see that ay = .Row but WHAT row is it starting with??

ay2? Is that saying it is "ay" times 2?

What is cc?

1711363185674.png
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
It is important to understand how "Worksheet_Change" event procedures work.
"Worksheet_Change" event procedures are VBA code that runs automatically when a range is manually updates in Excel.
Its one parameter, "Target", is the range that was updated that caused it to row.

So "Target.Row" is the row number of the cell that was just updated.
ay + 2 is simply just adding two to that row number.
 
Upvote 0
Solution

Forum statistics

Threads
1,216,019
Messages
6,128,311
Members
449,439
Latest member
laurenwydo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top