Change font color based on changes made on specific worksheets

Miss_Mel

New Member
Joined
Mar 10, 2022
Messages
2
Office Version
  1. 2019
Platform
  1. Windows
Hey guys, I need help figuring this thing out..

I have a workbook with multiple worksheets - let's say Sheet A, B, C, and D.

Sheet A = Used as a draft copy
Sheet B = Attributed to team "B"
Sheet C = Attributed to team "C"
Sheet D = Used as a final/reviewed copy

First, data is entered on Sheet A. Then, each team is asked to review and make changes - if required - to their own worksheet (B or C). Sheet D reflects the changes made by each team on their own sheets using vlookup.

I added the Worksheet_Change event under worksheet B and C and used the coding Target.Font.Color = vbRed to change the font color to red whenever a cell value changes. This is working great but, I also want the font color of these cells to change to red on Sheet D.

So far, I tried adding my code under Sheet D, Worksheet_Calculate event but the font is changing to red when data is entered on Sheet A. I need it to change to red only when changes are made to sheet B or C.

Any tips on how to fix this?
Thanks!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Welcome to the MrExcel forum!

Add this line in your existing Change events (on both B and C sheets):

VBA Code:
Sheets("Sheet D").Range(Target.Address).Font.Color = vbRed
 
Upvote 0
Solution
Welcome to the MrExcel forum!

Add this line in your existing Change events (on both B and C sheets):

VBA Code:
Sheets("Sheet D").Range(Target.Address).Font.Color = vbRed
That works beautifully! Super helpfull!
Thanks Eric!
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,538
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top