como cortar dados no Excel usando a fórmula?

0

eu uso ms excel 2007

Eu quero cortar uma linha na folha 1 e colá-la na folha 2 usando uma fórmula no Excel Eu já usei = VLOOKUP ou = A1, mas é apenas copiar os dados e não cortá-lo

obrigado por toda sua ajuda

    
por kurtcabage 17.04.2018 / 09:17

1 resposta

1

Você não pode fazer isso em uma fórmula, mas é mais do que capaz de fazer isso no VBA. Soemthing ao longo das linhas de:

Sub cut()

Set sh1 = Sheets("Sheet1") 'change your sheet names if they are different
Set sh2 = Sheets("Sheet2")
sh1.Range("A1:H1").cut sh2.Range("A1:H1") 'Select the range you are cutting from and where it being pasted

End Sub

Você também pode usar .EntireRow se for a linha completa que está cortando.

Sub cut()

Set sh1 = Sheets("Sheet1") 'change your sheet names if they are different
Set sh2 = Sheets("Sheet2")
sh1.Range("A1").EntireRow.cut sh2.Range("A1")


End Sub

Confira este link sobre como usar o método .cut.

    
por 17.04.2018 / 13:18