Change Color Of Active Cell

Jun 18, 2007

Is there VBA code that will:

a) change the color of the active cell?

b) return the formatting back when that cell is no longer active?

View 9 Replies


ADVERTISEMENT

Change Active Cell Color According To Name Above

Nov 1, 2007

Here is a screen shot of what I have:

I want to be able to enter the name from the above 4 cells (B3,B4,B5,B6) IN THAT COLUMN, and have the active cell change color accordingly.

If I am in cell C7 and start to type "PUBLIX" It should turn red in color. It does not because the code looks to a specific cell (example: B3). What can I change in my code to give the results I desire?

I have conditional formatting code below I copied from THIS site:

Private Sub Worksheet_Change(ByVal Target As Range)
' Multiple Conditional Format
Dim rng As Range
' Only look at single cell changes
If Target.Count > 1 Then Exit Sub
' Adjust Format range to suit
Set rng = Range("B7:H74")
' Only look at that range
If Intersect(Target, rng) Is Nothing Then Exit Sub
' Adjust conditions to suit
Select Case Target.Value
Case Range("B6").Value
Target.Font.ColorIndex = 50 ' Green
Case Range("B5").Value
Target.Font.ColorIndex = 3 ' Blue
' Case "Super"
' Target.Font.ColorIndex = 6 ' Yellow
Case Range("B4").Value
Target.Font.ColorIndex = 13 ' Purple-ish
Case Range("B3").Value
Target.Font.ColorIndex = 5 ' Red
' Case "Corporate"
' Target.Font.ColorIndex = 37 ' Light Blue
End Select
End Sub

View 7 Replies View Related

Change Active Cell Color

May 30, 2006

Found code on this site to change the color of the active cell. One problem and two questions. Code works, however, when you save and close the last active cell is stuck with the new color. Question1 is it possible to limit this code to cells in column B only and fix the problem above? Is there an easier better way to get the same result. See Attached

View 2 Replies View Related

Change Fill Color. Offset From Active Cell

Dec 8, 2006

I am aware of the ColorIndex, but more specifically I need to change the fill color of a cell that is 9 columns to the right of the active cell. I can't find out how to make this work. to clarify:

ActiveCell + 9 columns.Interior.ColorIndex = Yellow

There has got to be an easy way to do this.

View 3 Replies View Related

Change Color Of Active Row

Jan 26, 2008

I found Change Color Of Row When Cell Is Selected ("search" is my friend).

StephenR's example is just the sort of thing I want, except I'd like it to ignore Cells that already have an Interior colour, or revert the Cells to their original Interior colour when you move on. The other issue I see would be how could you change/edit a Cells fill properties, without this routine changing it back to white when you move on?

View 2 Replies View Related

Auto Calculate Color Function On Cell Color Change

Feb 15, 2010

I would like to be able to change the color of a cell in V4:AB31 and have the formula in AM10:AM13 automatically calculate the new result. As it is now the user has to press Ctrl ALT f9 for the formula to recalculate.

View 7 Replies View Related

Change Font Color Based On Adjacent Cell Color

Apr 18, 2008

I have two columns. The first one (A) contains cells that have different Fill colors. The second column (B) contains text adjacent to the colored cells. I am trying to change the color of the text in the second column (B) to the corresponding color in the adjacent cell in the first column (A). I don't think conditional formating works well in this situation. I believe the solution would be some sort of macro.

View 3 Replies View Related

Display Active Cell Color - No VBA

Apr 16, 2012

Am trying to return the color index of any cell my formula is in, with no VBA

Am using the FILLCOLOR function below....

Public Function FILLCOLOR(cell) As Variant
Application.Volatile True
FILLCOLOR = cell.Range("A1").Interior.ColorIndex
End Function

.... and wanting to combine it with Cell("address")

However, all I get is an error which I believe comes from Cell("address") returning "$A$1" (in quotes) and not $A$1 (no quotes).

View 8 Replies View Related

Change Font Color If Cell Color Become Yellow (6)

Jul 9, 2009

I have font color white in blank cells in column E and I (from row 5 to row 245) so the visitors will not see the text. If any of these cells become yellow (color code is 6), the font color will become black so visitors can see the text alot far better than white. I've tried this code myself after this post but nothing happen

View 4 Replies View Related

Change Text Color Based On Cell Color

Oct 17, 2006

I have various row cells in column (F) filled with the color Green. And corresponding text in Column G. How can I change the text of that particular row to white.

i.e.: if any cell in column F is Green, change the text color of that row in Column G to white?

View 5 Replies View Related

Color Banding To Locate Active Cell

Mar 24, 2006

I used the method described here:
[url]

The problem is that it seems only to work on the computer on which I made the sheet. This should mean that it is somehow dependent on some local settings. Does anybody know what settings, or whether it is something else that may be the cause?

View 9 Replies View Related

Changing (only) Active Cell Font Color

Jul 10, 2009

change the font color of an active cell, having it going back to its previous one when you move to a different cell?

View 9 Replies View Related

Change Active Cell Value On The Fly

May 28, 2008

I need to input a long list of steel sections in Excel. The steel sections have names like HEA200, HEA120, HEB 400, HEM300 etc.

I was thinking that this could be done easier by using codes for the section prefixes (HEA,HEB, HEM etc) and that the cell value would change automatically.

HEA=1
HEB=2
HEM=3
HD=4
UNP=5
etc.

For example:

I input "1100" - this would change on the fly to HEA100
I input "2200" - this would change on the fly to HEB200
I input "5200" - this would change on the fly to UNP200

I know I could do this by using a lookup function in another cell, but I want it all to happen in the same cell.

View 9 Replies View Related

Change The Cell Color On Drop Down Change

Jun 3, 2008

I have a drop down sub pasted to worksheet:

Private Sub ComboBox1_Change()
ComboBox1.List = Array(100, 200, 300, 400)
If Range("I11").Value < Range("N11").Value Then
If Sheets("Profile").Range("K18").Value < ComboBox1.Value Then
Range("I11").Interior.ColorIndex = 2
Else
Range("I11").Interior.ColorIndex = 3
End If
End If

End Sub

I want it to change the cell color on drop down change. How can I modify things to have the change in drop down selection?

View 9 Replies View Related

Change Active Cell After Hyperlink Clicked

Dec 27, 2009

I have a column with entrys of 2 kinds. Some being Hyperlinks and others with normal type data. All cells are locked with password except for cells that will possibly have entrys made in them.

Is there a way to move the active cell to R1C1 after any hyperlink clicked? R1C1 is unlocked.

View 14 Replies View Related

Macro / Change To Run On Active Cell Instead Of Whole Page

Apr 24, 2013

I am still kind of new to using VBA code and my editing skills are very novice at the moment.

How would I change this Code to run on only the active cell selected and that is all, instead of the whole page?

Sub AddIFERROR()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Dim xCell As Range
Dim xFormula As String
For Each xCell In Selection
If xCell.HasFormula Then
xFormula = Right(xCell.Formula, Len(xCell.Formula) - 1)
xCell.Formula = "=IFERROR(" & xFormula & ","""")"

[code]....

View 6 Replies View Related

Change Active Cell Value In Hidden Column

Apr 11, 2007

The attached sample workbook has a listbox of areas in a userform. The Textbox on the user form is so that the user can edit the Area names in the listbox. The userform functions fine as long as the column that contains the area name is not hidden. What I want to be able to do is edit the Area Names using the Textbox with the area name column hidden.

View 2 Replies View Related

Change The Background Or Highlight (instead Of Bold Border) The Active Cell

Jul 4, 2007

As i navigate excel, I was wondering how to change the background or highlight (instead of bold border) the active cell?

View 3 Replies View Related

Color Change In A Cell

Nov 24, 2009

What formula do i use if i want the text in cell A1 to change to red if any entry is made in cell B1.

View 2 Replies View Related

Change The Color Of Cell

Dec 14, 2009

I am having some color problems. From A2:AB2000 I have different fill colors for cells all over the place. The only color I need is the color purple which I believe is the color “39”.

So basically all cells except the cells with the color purple change to white from A2:AB2000. I would like to add this code to the macro I have already created.

View 2 Replies View Related

Change Row Color On Cell Value?

Nov 22, 2012

I'm trying to put together a script which changes the color of the row in columns A:AE if any cell in the Range B7:B400 has the value of 'No'. If it has the value of 'Yes' I would like it to Exit Sub.

I've put together the code below to try an create this function, but I'm running into a few problems.

Code:
If Intersect(Target, Range("B7:B400")) Is Nothing Then Exit Sub
If Selection.Cells.Count > 1 Then Exit Sub
If Target "No" Then[code]....

When the value of any cell in Range B7:B400 is 'Yes' the row changes to grey, if I enter 'No' it removes all cell shading from the row, and I'm not very clear on what changes I need to make.

View 2 Replies View Related

Cell Color Change If Value Changes

Apr 4, 2007

I've got some spread sheets that I send out. People fill them out and send them back to me. The only problem is that I dont know which cells they've changed and which cells they've left. Is thier a way to tell VB to change the color of a cell if the value has changed

View 9 Replies View Related

Change The Color Of The Cell

Jul 24, 2007

I have to check a cell to see if ti has a date in it, if so , then i have to check the current date to another cell, if the current date is greater then that cell i want to change the color of the cell

View 9 Replies View Related

Change The Cell Color

Apr 28, 2008

When I click on a button I would like an option to cancel a row range of cells by turning the writing red with a cross through it.

So if I wanted to cancel a certain row of data I would click on a button, enter the range of cells to cancel and then this would turn all of the writing in the cells to red colour with a strike through the words.

View 9 Replies View Related

IF And Change The Color Of Cell

Jan 7, 2010

i need to add this in a macro that i previously created
here is what i need, i hope its clear for everyone to understand

I want to be able to change a color of a row to purple if a cell is greater than 5 days
so basically what i need is something like this

IF BQ1 has the data "APPROVED" and data in BP1 is 01/04/10 and BN1 is blank and if BN1 is blank after 5 days of BP1 then the color of this row changes to purple

View 9 Replies View Related

Change Row Color If Cell Value Is

Mar 23, 2007

I want to change the row color after the value in one of the cells equals a certain value. What is the best/easiest way to accomplish this?

View 9 Replies View Related

Change Cell Color Based On Value

Jul 20, 2009

I'm putting the sum of 3 cells in a 4th cell(D2). If the sum is greater, I would like the sum to be the color green. If the sum is less, I would like the sum to be the color red. Is this possible?

(D2) has change value, I want to compare the new value against the existing one.

View 9 Replies View Related

Change Default Cell Color?

Mar 10, 2014

I would like to change the default color of any excel sheet I use to grey from the standard white and I am struggling to find out how this is achieved.

In other words, I am trying to have all cells in the sheets I work with appear grey on my screen by default. A coworker of mine used to work in banking and she has grey cells but does not know how she changed them.

View 1 Replies View Related

Change Color Of A Cell By Just Clicking On It?

Aug 25, 2009

I'm trying to do. I have 2 columns, both have empty cells with borders. I would like to make it so that when the user clicks one of the cells, it turns grey and the one beside it turns white. I set up two macros as follows:

View 3 Replies View Related

How To Change Row Color Based On Value Of 1 Cell

Dec 20, 2011

I'm trying to set up a spreadsheet to track 20 vehicles mileage, and when they are due for an oil change. I have the value of when they are next due in column D, and the actual mileage in column G. I want to have the row for each vehicle turn yellow when they are within 1,000 miles of needing an oil change, and red when they are due/overdue.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved