A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Two problems.
Main problem is that no value has been assigned to Row and therefore Row equals zero and there is no row zero and the code should fail with the error you have indicated on the following line of code.
sEntity = .Cells(Row, 6).Value
Also Row is a reserved word and it is not good programming to use it as a variable. Preferable to use lRow or lngRow.