Discussion: format dates ??
Afficher un message
Vieux 16/11/2007, 11h06   #7 (permalink)
matthieu33
XLDnaute Occasionel
 
Avatar de matthieu33
 
Date d'inscription: septembre 2007
Messages: 431
Par défaut Re : format dates ??

Bonjour Evelynetfrancois, pierrejean, PascalXLD et le forum,

Voici une solution :

Code:
Private Sub Worksheet_Activate()
Dim c As Range
Dim z As String
Dim i As Byte
 With Columns(1)
        Set c = .Find(Date)
            If Not c Is Nothing Then
                 i = c.Row
            z = c.Address
   ActiveWindow.ScrollRow = i
            Range(z).Activate
    End If
  End With
End Sub
@+
matthieu33 est déconnecté   Réponse avec citation