I'm trying to design a template that highlights changes made so the QC reviewer doesn't have to manually compare the template data and the new/modified data cell by cell (it could potentially be hundreds of cells with paragraphs, bulleted lists, etc., in each cell). The original data is on worksheet 'Template', the changes on 'Working'. I made a button/macro that copies everything from 'Template' to 'Working' and then applies Conditional Formatting to 'Working' to highlight cells where changes to the content are made. It works just as intended. (If it matters, the range used can vary quite a bit and since I'm not very skilled with VBA I just applied the Conditional Formatting to the entire 'Working' sheet.)
My problem is sometimes the change is a formatting change, not a content change. Specifically, if a portion of the original text needs to be deleted but nothing added, the deleted text is shown bystrike-through and red text. Conditional Formatting doesn't recognize this as a change since it's just formatting, not content. I can't change the use of strike-through and red, it's company SOP.
Is there a VBA function to compare formatting changes and highlight the cell like Conditional Formatting does for a content change?
My problem is sometimes the change is a formatting change, not a content change. Specifically, if a portion of the original text needs to be deleted but nothing added, the deleted text is shown by
Is there a VBA function to compare formatting changes and highlight the cell like Conditional Formatting does for a content change?