Imagine each range as a mini worksheet with it's own rows and columns.
So when you have rngRows.Cells(1,2) the Cells(1,2) refers to a cell in the mini worksheet rngRows.
Similarly with rowRng and mapRng.Rows, rowRng is referring to rows in the mini worksheet mapRng.
PS For rngRow.Cells(1,2) you could actually use rngRow.Range("B1"), but that would just be confusing.![]()
Bookmarks