Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default can i link cells colour wise?

is it possible to link two cells having same value colour wise i.e. if both
of them are having name john is it possible to link them in such a way that
when i change one cell's colour the other one changes itself automatically?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default can i link cells colour wise?

Try this worksheet event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Range("A1").Copy
Range("B9").PasteSpecial Paste:=xlPasteFormats
Target.Select
Application.EnableEvents = True
End Sub

It links the formatting of B9 to A1. Whenever you change the format of A1,
the format of B9 will automatically change to follow it.
--
Gary''s Student - gsnu200771


"juni" wrote:

is it possible to link two cells having same value colour wise i.e. if both
of them are having name john is it possible to link them in such a way that
when i change one cell's colour the other one changes itself automatically?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default can i link cells colour wise?

thanks
but i am not that much familier with macros i will be grateful if you could
please write me the steps to do that also.
i really need this solution
thanks again
juni

"Gary''s Student" wrote:

Try this worksheet event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Range("A1").Copy
Range("B9").PasteSpecial Paste:=xlPasteFormats
Target.Select
Application.EnableEvents = True
End Sub

It links the formatting of B9 to A1. Whenever you change the format of A1,
the format of B9 will automatically change to follow it.
--
Gary''s Student - gsnu200771


"juni" wrote:

is it possible to link two cells having same value colour wise i.e. if both
of them are having name john is it possible to link them in such a way that
when i change one cell's colour the other one changes itself automatically?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default can i link cells colour wise?


Because it is worksheet code, it is very easy to install and automatic to use:

1. right-click the tab name near the bottom of the Excel window
2. select View Code - this brings up a VBE window
3. paste the stuff in and close the VBE window

If you have any concerns, first try it on a trial worksheet.

If you save the workbook, the macro will be saved with it.


To remove the macro:

1. bring up the VBE windows as above
2. clear the code out
3. close the VBE window

To learn more about macros in general, see:

http://www.mvps.org/dmcritchie/excel/getstarted.htm

To learn more about Event Macros (worksheet code), see:

http://www.mvps.org/dmcritchie/excel/event.htm




--
Gary''s Student - gsnu200771


"juni" wrote:

thanks
but i am not that much familier with macros i will be grateful if you could
please write me the steps to do that also.
i really need this solution
thanks again
juni

"Gary''s Student" wrote:

Try this worksheet event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Range("A1").Copy
Range("B9").PasteSpecial Paste:=xlPasteFormats
Target.Select
Application.EnableEvents = True
End Sub

It links the formatting of B9 to A1. Whenever you change the format of A1,
the format of B9 will automatically change to follow it.
--
Gary''s Student - gsnu200771


"juni" wrote:

is it possible to link two cells having same value colour wise i.e. if both
of them are having name john is it possible to link them in such a way that
when i change one cell's colour the other one changes itself automatically?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can recalculation be set to "row wise" or column wise" ? Looking for rowwise recalculation Excel Discussion (Misc queries) 0 August 17th 07 10:53 PM
fill list manually and link to colour buttons in overview Joefromthestreet Excel Discussion (Misc queries) 0 July 25th 06 01:34 PM
Data row wise, formula column wise Fred Smith Excel Discussion (Misc queries) 4 December 9th 05 03:48 PM
Delete row wise duplicates & colomun wise simultaneously excel Dipankar Excel Worksheet Functions 0 October 6th 05 01:14 PM
Using = sign will link data between sheets but not colour. Why? Laurie21 Excel Worksheet Functions 5 June 30th 05 01:49 PM


All times are GMT +1. The time now is 06:17 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"