For example, if the data in one worksheet looks like:
UsedRange.Columns.Count is 6 which is the maximum column count for all rows. Even if I iterate using
For each row in UsedRange.Rows
For each cell in row.Cells
...
Next cell
Next row
It's still counting 6 for each row.