marreco
Member
Hi
Way happening it..?
My code get values other sheet, but get formulas and paste value.
Afte this, some cells are empty, but the next data pasted, it is not below the other data.
Try execute my code multiple times.
Thank you!!
Way happening it..?
My code get values other sheet, but get formulas and paste value.
Afte this, some cells are empty, but the next data pasted, it is not below the other data.
Try execute my code multiple times.
Code:
Sub strange_empty_cells()
Application.ScreenUpdating = 0
Worksheets("Dados").Range("X2:AA11").Copy
Worksheets("Indice").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = 1
End Sub
Thank you!!