Dupliquer la valeur des cellules

Nino3579

New Member
Joined
Jul 9, 2012
Messages
2
Bonjour;
J'ai la configuration suivante:
a b c
27 12/11/1902 10/12/1931
27 12/11/1902
27 12/11/1902
27 12/11/1902
28 22/02/1907 01/01/1931
28 22/02/1907
28 22/02/1907
28 22/02/1907
29 25/01/1906 01/02/1932
29 25/01/1906
29 25/01/1906
29 25/01/1906

Je voudrai dupliquer la valeur de b dans la colonne C au cas ou la valeur a est la même.
Merci
Nino3579
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Bonsoir Nino3579

Alors, il faut sélectionner les cellules dans colonnes C.
Puis, tapez F5, Spécial... > Blanks (les champs vides, je ne sais pas le mot exacte dans la version française de Excel) > Puis OK.
Puis, tapez:

=

en poussez la flèche à gauche

Puis poussez Ctrl-Enter au lieu de simplement Enter. De cette façon, vous aurez une formule dans toutes les cellules vides de colonne C.
Si vous voulez, vous pouvez copier/coller en valeurs.
 
Upvote 0
Bonjour Wigi et merci beaucoup;

Je m'excuse mais je me suis mal exprimé dans la formulation de ma question:
Au cas ou "a1 = a2" " c1=c2 " sinon suivant de façon à remplir les cellules vides de "c" par la valeur de la cellule précédente dans "c"

De nouveau avec mes excuses et mes remerciements anticipés.
Nino3579
 
Upvote 0
Salut,

Pourriez-vous expliquer les résultats attendus dans l'échantillon des données affichées au #1?

M.
 
Upvote 0
Par example:

Code:
Sub FillEmptyCells()

    Dim rng As Range


    Application.ScreenUpdating = False
    Application.EnableEvents = False
    
    On Error GoTo ErrHandler


    With ActiveSheet


        For Each rng In .Range("C3:C" & .Range("A" & .Rows.Count).End(xlUp).Row).SpecialCells(xlCellTypeBlanks).Areas


            With rng


                .NumberFormat = .Cells(1).Offset(-1).NumberFormat
                .Value = rng.Cells(1).Offset(-1).Value
            End With


        Next


    End With
    
    Application.EnableEvents = True
    Application.ScreenUpdating = True


    On Error GoTo 0


    Exit Sub


ErrHandler:


    MsgBox "An error occurred. Please investigate.", vbCritical, "Error"


End Sub
 
Upvote 0

Forum statistics

Threads
1,223,952
Messages
6,175,593
Members
452,654
Latest member
mememe101

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top