0
Set rgFound = Range("B1:B1000").Find(Sheets("FormAluguer").Range("E10"))
If rgFound Is Nothing Then
resposta = MsgBox("Não encontrado.", vbYesNo + vbExclamation, "stock incorrecto")
Else
Dim mrange As String
Dim linha As Integer
mrange = rgFound.Address(RowAbsolute:=False, ColumnAbsolute:=False, External:=False)
resposta = MsgBox("Foi encontrado em :" + rgFound.Row, vbYesNo + vbExclamation, "stock incorrecto")
End If
mrange returns $B7 and I wanted to take this amount and retain the number of row in this case 7 to then do accounts in column Row 7 do accounts
tried rgFound.Address(). Row but does not work