Salut Petchy...
Euh convertir Où ? dans une feuille... (?) un userform...(?) un MsgBox (?)
Enfin just for le fun voici un exemple......... Où j'ai mis le résultat de la conversion dans....... la barre de Status !!
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Value <> "" Then
Francs = ActiveCell.Value
Euro = Francs / 6.55957 'Inverse=> Francs = Euro * 6.55957
Application.StatusBar = Format(Euro, "0.00")
Else
Application.StatusBar = False
End If
End Sub
NB : Pensez à cliquer sur une cellule Vide avant de quiter, car sinon la barre de status gardera la valeur Euro... ou faite tourner cette macro :
Sub RemiseStatus ()
Application.StatusBar = False
End Sub
Bon allez .. Bon aprèm
@+Thierry