Caso não consiga abrir orkut...
Vamos lá:
1ª parte:
a. Clique em uma aba de planilha com o botão direito
b. Selecione a opção Exibir Código
c. Coloque na "página em branco", a instrução a seguir:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
InicioDoPisca
End Sub
2ª parte:
a. Ainda no ambiente do VBA, clique em Inserir> Módulo
b. Coloque nesta outra "página em branco", a instrução baixo:
Option Explicit
Dim ProximoSegundo
Sub InicioDoPisca()
flashCell
End Sub
Sub FimDoPisca()
On Error Resume Next
Application.OnTime ProximoSegundo, "flashCell", , False
End Sub
Sub flashCell()
Dim célula As Range
ProximoSegundo = Now + TimeValue("00:00:01")
Application.OnTime ProximoSegundo, "flashCell"
If Range("A1") < 5 Then 'se A1 menor q 5 a celula B1 pisca
If Range("B1").Interior.ColorIndex = 36 Then
Range("B1").Interior.ColorIndex = 3
'Range("B1").Value = "Light blue"
ElseIf Range("B1").Interior.ColorIndex = 3 Then
Range("B1").Interior.ColorIndex = 36
'Range("B1").Value = "Light yellow"
End If
End If
End Sub
e ainda mais simples,
Option Explicit
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer
Dim Cor As Integer
If Range("A30") > 299 Then
For i = 1 To 3
For Cor = 3 To 4
Range("A30").Interior.ColorIndex = Cor
Sleep 1000
Next
Next
Range("A30").Interior.ColorIndex = 0
End If
End Sub
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 16/06/2010 5:55 am