I found an slight issue... Column CD on the MAFFT Oracle Site Reference is a =Cell link. When it copies over to Column CZ on the Deployment it doesn't bring in the info but the =Cell link and the wrong one. It needs to pull either the info from the cell or the building info from the MAFFT Sheet.
Quote Originally Posted by Paul_Hossler View Post
Added this bit of code to the macro to delete any 'copy' fields if the 'match' fields are blank. Any fields NOT on the 'copy' list are left



    'delete 'fields to copy' on Deployment if all the 'fields to match' are blank
    For iDeploy = 3 To rDeploy.Rows.Count
        If CheckBlanks(rDeploy.Rows(iDeploy)) Then
            For iCopy = LBound(aCopy, 1) + 1 To UBound(aCopy, 1)
                rDeploy.Cells(iDeploy, aCopy(iCopy, 2)).Clear
            Next iCopy
        End If
    Next iDeploy