Complex Conditional format question

Louise_douglass

New Member
Joined
Mar 10, 2014
Messages
24
Trying to replace a macro for a conditional format.

Can I use conditional formatting when I have a cell that is coloured - for eg. Cell BN30 is coloured in pink. IF that cell has a colour - I want that same colour to populate in cell BZ30. Is this possible?

hope I explained well enough!!

Thanks!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I am not sure I understand?

The first cell is colour formatted manually. Instead of running a macro I want to know whether we can get that second cell to auto format to the same. so if I decide to make the cell BN30 Blue - it will format Cell BZ30 to blue as well.

thanks!
 
Upvote 0
Is anyone able to help with this request?

Basically I am looking for the right function in excel to colour a cell automatically in the SAME colour IF another cell has been populated in that colour. SO in A1 is coloured blue B1 will colour in Blue as well!

Thanks a bunch!!! :)
 
Upvote 0
This seems to work (am no VBA expert)

Code:
Sub k1()
CellClr = Range("A1").Interior.Color
Debug.Print CellClr
End Sub

CellClr returns a numeric value based on colour
 
Upvote 0
Say your formula for conditional formatting for cell BN30 is ">5". If the cell value is greater than 5 color it pink.
For BZ30 then just apply the formula (in conditional formatting) '=BN30>5' and condition it to turn pink also.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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