Olá Segalla!
Para fazer isso, creio que somente através de VBA.
Experimente colar o código abaixo no módulo da planilha, se você tiver conhecimentos em VBA.
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
If Range("A1") = "" Then
Exit Sub
Else
Range("B1").Value = Now()
End If
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static Addr As String
If Not Intersect(Target, Range("A1:B1")) Is Nothing Then
If Range("A1") = "" Then Exit Sub
Application.Goto Range(Addr)
MsgBox "Não é possível alterar a célula!"
End If
Addr = ActiveCell.Address
End Sub
Rafael Issamu F. Kamimura
Moderador Oficial Microsoft Community - MCC (Contribuidor do Microsoft Community)
http://zip.net/bjrt0X - http://zip.net/bhrvbR
Foi útil? Clique na mãozinha
Conheça: http://excelmaniacos.com/
Postado : 31/03/2015 7:21 am