Bonjour,
J'ai cree une macro demandant à l'utilisateur de rentrer le nom, le prénom, et l'age de 5 candidats sur la feuille 1
J'aimerais que le nom entree par l'utilisateur apparaisse dans la feuille 2
Comment faire ?
Voici ma macro
Sub Macrocandidatshommes()
Worksheets("Candidats Hommes" ).Select
Dim a, b, c, d, e As String
Dim f, g, h, i, j As String
Dim k, l, m, n, o As Integer
a = InputBox("Entrez le nom du candidat 1" )
Range("B2" ).Select
ActiveCell.FormulaR1C1 = a
b = InputBox("Entrez le nom du candidat 2" )
Range("B3" ).Select
ActiveCell.FormulaR1C1 = b
c = InputBox("Entrez le nom du candidat 3" )
Range("B4" ).Select
ActiveCell.FormulaR1C1 = c
d = InputBox("Entrez le nom du candidat 4" )
Range("B5" ).Select
ActiveCell.FormulaR1C1 = d
e = InputBox("entrez le nom du candidat 5" )
Range("B6" ).Select
ActiveCell.FormulaR1C1 = e
f = InputBox("Entrez le prénom du candidat 1" )
Range("C2" ).Select
ActiveCell.FormulaR1C1 = f
g = InputBox("Entrez le prénom du candidat 2" )
Range("C3" ).Select
ActiveCell.FormulaR1C1 = g
h = InputBox("Entrez le prénom du candidat 3" )
Range("C4" ).Select
ActiveCell.FormulaR1C1 = h
i = InputBox("Entrez le prénom du candidat 4" )
Range("C5" ).Select
ActiveCell.FormulaR1C1 = i
j = InputBox("entrez le prénom du candidat 5" )
Range("C6" ).Select
ActiveCell.FormulaR1C1 = j
k = InputBox("Entrez l'age du candidat 1" )
Range("D2" ).Select
ActiveCell.FormulaR1C1 = k
l = InputBox("Entrez l'age du candidat 2" )
Range("D3" ).Select
ActiveCell.FormulaR1C1 = l
m = InputBox("Entrez l'age du candidat 3" )
Range("D4" ).Select
ActiveCell.FormulaR1C1 = m
n = InputBox("Entrez l'age du candidat 4" )
Range("D5" ).Select
ActiveCell.FormulaR1C1 = n
o = InputBox("entrez l'age du candidat 5" )
Range("D6" ).Select
ActiveCell.FormulaR1C1 = o