I have the following formula in several cells in column C from row 8 to row 61:
=IFERROR(INDEX(Comments!$K$2:$K$76,MATCH(C22,Comments!$B$2:$B$76,0)),"COMMENT REQUIRED")
Since it is an index match, only values are copied. I would like to implement VBA code that will preserve this index match, but also keep the source formatting of what is being copied.
=IFERROR(INDEX(Comments!$K$2:$K$76,MATCH(C22,Comments!$B$2:$B$76,0)),"COMMENT REQUIRED")
Since it is an index match, only values are copied. I would like to implement VBA code that will preserve this index match, but also keep the source formatting of what is being copied.