Basically, I have a workbook with several sheets. Sheet 1 is a "master" sheet and it contains a ton of numeric and text values. The other sheets reference cells from this "master" sheet. This way, a change on the master sheet is reflected in all the other sheets.
What I want: When a value on the "master" sheet changes, all the cells (on the other sheets) that are linked to the changed cell (on the "master" sheet) will change background or font color, border, etc. This would be a visual flag that lets me know something has changed when I am looking at sheets other than the "master" sheet.
I'm familiar with some programming (MatLab and C) but not VBA. I found the below code on some forums, but it changes the color of a cell when a change is made, but the color change does not propagate to the various cells that are linked to the original (changed) cell. Any help would be greatly appreciated....
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 8
End Sub
What I want: When a value on the "master" sheet changes, all the cells (on the other sheets) that are linked to the changed cell (on the "master" sheet) will change background or font color, border, etc. This would be a visual flag that lets me know something has changed when I am looking at sheets other than the "master" sheet.
I'm familiar with some programming (MatLab and C) but not VBA. I found the below code on some forums, but it changes the color of a cell when a change is made, but the color change does not propagate to the various cells that are linked to the original (changed) cell. Any help would be greatly appreciated....
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 8
End Sub