Posts by jindon

    Re: select row and chane fonts with VBA


    1) No need to "Select".
    2) Variables for Row counter should be Long type.


    try

    Re: How do I automate to select particular columns from the mastersheet to another sh


    Try

    Re: consolidate rows into single row


    Add one line

    Code
    With Range("a1", Range("a" & Rows.Count).End(xlUp)).Resize(, 5)
            .Parent.AutoFilterMode = False  '<----------------------------
            a = .Value: ReDim w(1 To UBound(a, 2))

    Re: consolidate rows into single row


    Confusing...
    try

    Re: consolidate rows into single row


    Ahhh, sory. bugs..
    It was left 5, but should be 6 since you have comments in col.C
    Change

    Code
    ElseIf a(i, 5) <> "" Then 
                        If .exists(a(i, 1)) Then 
                            w = .Item(a(i, 1)) 
                            For ii = 1 To UBound(w, 2) 
                                If w(5, ii) = "" Then w(5, ii) = a(i, 5): Exit For 
                            Next 
                            .Item(a(i, 1)) = w 
                        End If 
                    End If


    to

    Code
    ElseIf a(i, 6) <> "" Then
                        If .exists(a(i, 1)) Then
                            w = .Item(a(i, 1))
                            For ii = 1 To UBound(w, 2)
                                If w(6, ii) = "" Then w(6, ii) = a(i, 6): Exit For
                            Next
                            .Item(a(i, 1)) = w
                        End If
                    End If

    Re: VBA - first to match Name with data range and perform Hlookup


    Quote from RP_1985;758618


    Any help doing this on a VBA will be much appreciated. Spreadsheet attached for workings


    Re: Consolidating data from multiple client records


    Try

    Re: Create Summary and Report from text file


    Changeg "myReport" to

    Re: Create Summary and Report from text file


    Run date issue.


    Upload a txt file, I only work with uploaded file.

    Re: Conciliation by reference and Amount


    VBA

    Re: Application-defined or object-defined error


    Re: consolidate rows into single row


    Try change to