Boa tarde Srs
Sou iniciante em excel VB e estou com dúvida na seguinte situação:
[quote]Private Sub cmd_Gravar_Click()
Dim iLastRow As Integer
iLastRow = ActiveSheet.UsedRange.Rows.Count 'Conta o número de linhas preenchidas no arquivo
iLastRow = iLastRow + 1 'valor de iLastRow será a próxima célula (que estará vazia)
'Preencher as células vazias com os valores das TextBoxes:
'-----------
Range("A" & iLastRow).Value = txt_NoRegistro.Text
Range("C" & iLastRow).Value = txt_Cliente.Text
Range("D" & iLastRow).Value = txt_Dia.Text
Range("E" & iLastRow).Value = txt_Ref.Text
Range("H" & iLastRow).Value = txt_Responsavel.Text
Range("I" & iLastRow).Value = txt_Control1.Text
Range("J" & iLastRow).Value = txt_Control2.Text
'-----------
ActiveWorkbook.Save 'Salva a pasta de trabalho
End Sub[/quote]
Na linha " iLastRow = ActiveSheet.UsedRange.Rows.Count", como posso indicar a coluna e planilha? Pois no meu caso, preciso seja preenchida a ultima linha vazia, mas contando de uma determinada coluna (B) em uma planilha especifica(DADOS).
Agradeço desde já pelas explanações
Postado : 02/06/2014 11:29 am