Highlighting a Change from a linked workbook *

fireslguk

Active Member
Joined
Nov 11, 2005
Messages
294
Whats the simplist way of highlighting a change to a cell which is contains a different value to when it was last opened to indicate a new value (Change).

Ill explain :-

7 Workbooks in total being different departments.

1 Workbook being a status page containing totals and links to these others.

When this status one is opened if the link cells have changed in these other depts workbooks then a cell next to this link or the link cell itself formats to green background. If no change then it will stay say yellow.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You could copy values to a reference area before you close the book, then compare against those values when reopening and updating links.
 
Upvote 0
struggling can you giss a clue, doing a copy before close and then cond format but no still no joy
 
Upvote 0
To help I need details ... precise details. What are you doing exactly?
 
Upvote 0
sheet 1 a1 = value 27 say

sheet 2 (the status sheet) b1 = sheet1 a1 (being value 27 (A link)

code in sheet 2 = before close copy b1 to b2 save then quits

sheet 2 cond format b1 = if b1 cell value not equal to b2 then green

on opening sheet2 problem = b1 updates and so does b2 same time therefore no value change.
 
Upvote 0
values ?

how do i write that line in vba

Range("b1").Select
Selection.Copy
Range("C1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWorkbook.Save
Application.Quit
 
Upvote 0
I'd do:
Code:
Range("C1").Value=Range("B1").Value
it's more efficient that doing PasteSpecial Paste:=xlValues
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

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