Why is my code skipping a whole for loop? [closed]

you have if (Rows_A=!Columns_B) in your example. I think you want if (Rows_A != Columns_B)

Leave a Comment