Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Excel


Advertisements:










Highlight Row Of Active Cell


Is it possible to have a specified shading (say 50%) applied to all rows except the currently picked row and the header rows to allow a user to focus on inputting across the row? I'd use this in conjunction with " Move Selection After Enter" to "Right" so the user would stay on the same row. I've tried the Help function, but can't find anything.


View Complete Thread with Replies

Sponsored Links:

Related Forum Messages:
Highlight The Active Row
if you click on a row, it highlights every cell in it, I want to do the exact same thing but then also when you click on a cell only.

Preferable (probably impossible though) without the use of VBA, because in my company
I think some are "carefull" with enabling macro


View Replies!   View Related
Highlight Active Row
I spend a lot of time in spread sheets working with part numbers and sales figures. With a part # in column B and sales per month in adjacent columns, stretching back years. Is there any way to highlight an entire row automatically? ie. I use Ctrl F to search for a number and it goes to B24. I now want the entire row 24 highlighted as the active row.

When I move to another cell I want the entire row highlighted automatically. Can it be done.

View Replies!   View Related
To Highlight Active Row And Column
I found this code to highlight the active row. I tried to make it highlight the row and column, but I was not successful. What I really need is to highlight the active row and column above and to the left of the active cell, not the entire row and column. For example, if G10 is active, the highlighted cells would be G1:G10 and A10:G10.


Private Sub Worksheet_SelectionChange(ByVal Target As Excel. Range)
Dim i As Long
Cells.Interior.ColorIndex = xlColorIndexNone
If Application. CountA(Target.EntireRow) 0 Then
i = Target.Row
Else
For i = Me.UsedRange.Rows.Count To 1 Step -1
If Application.CountA(Me.Rows(i)) 0 Then
i = i + 1
Exit For
End If
Next i
End If
Rows(i).Interior.ColorIndex = 6
End Sub

Also, I have fill colors on the sheet and I just noticed that the code removes those fill colors. I need it to not remove my fill colors. The only fill colors it should remove are ones it previously colored.

View Replies!   View Related
Print Active Cell Highlight
I have a routine that highlights a selected Active Cell,
but when I printout the spreadsheet this highlight is not printed.

I have been pull my hair out (what's left!), to try to show this highlighted cell when printed.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Range("d22:u45"), Target) Is Nothing Then
Range("d12").Value = " Out"
Range("e14").Value = "0"
Else
If Intersect(Range("d22:u45"), Target) >= 3 Then
Range("d12").Value = Cells(19, ActiveCell.Column).Value
Range("e14").Value = Cells(21, ActiveCell.Column).Value
Static rngPrev As Range, PrevColor As Integer
Dim TempColor As Integer
TempColor = Target.Cells(1, 1).Interior.ColorIndex

If Not rngPrev Is Nothing Then
If PrevColor <> xlLineStyleNone Then .......................


View Replies!   View Related
Highlighting The Active Cell After A Highlight
I have a cover sheet to a workbook that holds hyperlinks to its relevent page. Several of the hyperlinks link to the same page but different relevant cells. However it is not overly clear which cell is active when you click the hyperlink. What I would like is for the active cell to be highlighted on the page. EG hyperlink 1 links to page 1 cell A2 & hyperlink 2 links to page 1 cell B6 - I would like A2 to be highlighted when accessed by hyperlink 1 & B6 highlighted when accessed by hyperlink 2.

View Replies!   View Related
Change The Background Or Highlight (instead Of Bold Border) The Active Cell
As i navigate excel, I was wondering how to change the background or highlight (instead of bold border) the active cell?

View Replies!   View Related
Insert Row On Sheet & Move Active Cell Row To It
I would like to create a macro that could archive entries from one sheet and insert them in another. I created one but the problem is that the entry has to be the same row each time.

Example:

Sheet 1 – is current jobs and sheet 2 is old jobs.

My macro moves an entry from Row A-5 of Sheet 1 and moves it to the top of Sheet 2.

I would like to be able to scroll through each entry select it and have it moved to the top of the Old Jobs sheet.

View Replies!   View Related
Highlighting Active Cell's Row, Along With Any Row That Shares Same Value In That Column
Is it possible to click on a cell in column C, and have the wishlist below happen:

That active cell's row is hightlighted.

Any cell in that column that has the same value as active cell is also highlighted.

Plus, any cell in another sheet that has that value it's row is highlighted too.

Example:

I click on C5 in Sheet 2 its value is 45000789 it row is highlighted, this value also appears in C3 in the same sheet, so it's row is highlighted as well. Plus, in sheet 1 in C10 this value appears and it's row is highlighted as well. When any of the values are clicked again the highlight is removed from all parties.

View Replies!   View Related
Insert Row At Active Cell With Formula From Fixed Row
I want to insert a new row that contains the formulas of a fixed row (1:1).
The inserted row is changeable and is determined by whichever is the current active cell.

Eg:

Active cell is something random like E16

I want to add a new row but don't want a blank row - rather want a row that contains the properties of 1:1

View Replies!   View Related
Evaluate Each Row And If The Last Value For That Row Is X, Then Highlight That Cell
I want to do it evaluate each row and if the last value for that row is X, then highlight that cell and the Server name for that row.

I have used conditional formatting but it seems that I cannot specify an option to look at the last cell in a row, evaluate that cell's value and then apply the formatting. I can only have conditional formatting highlight every cell in that row that matches the condition.

I only want the last cell, which represents the most current data, to be highlighted, as well as the category name, if the condition is met.

View Replies!   View Related
Highlight Row If Cell Value Exists In Row
I'm trying to make a macro. I'm experienced with Excel (took a college course on it) but am really new to VBA and making my own macros.

I need a macro that will take the item number in cell E4, and highlight the row (specifically columns B through R) where that unique item number is found (they're located in row B).

View Replies!   View Related
Use Value Of Active Cell To Name Row
I'm trying to take the value of a cell and use the value as a name for the row.
If cell a1 has value = June. I want to change the name of row 1 to June.
I'm not sure what I'm doing wrong with the following code.

Sub Name_a_row()
'
'
Dim TheName As String
Dim RowNum As Integer
TheName = ActiveCell.Value
RowNum = ActiveCell.Row
ActiveWorkbook.Names.Add Name:="TheName", RefersToR1C1:="=Data!R&RowNum"

View Replies!   View Related
Highlight A Row Based On A Cell
I have a macro that already works well but I need to make a change to it and I can't figure out how to do it.

I need so when the macro is run it will prompt the user for a date. After they enter the date it will highlight cells A:K on each row that data appers.

A little background for this. It is a schedule for a call centre which can show two to three weeks of schedules per agent. We rerun the macro each day to update break times and I would like it so it will highlight todays line.


View Replies!   View Related
Highlight The Cell And All Of The Cells Along The Same Row
Is there a way that when a cell is selected it will highlight the cell and all of the cells along the same row?

View Replies!   View Related
Row Of Active Cell Selected
I know how to select an entire row, but if I want the "row" with active cell to be highlighted when I press enter, or the down arrow key, is there a way to do that (mainly for ease of viewing).


View Replies!   View Related
Use Active Cell For Row Number
There is a chart encompasing column A, B and C. The column D has certain numbers stored in its cells. All I wont is to build a code which would check the value of the cell in column D which is in the same row as the active cell, and then paste certain date into the active cell - basing on the value of the cell in column D.

Here an example:

Sub pasteif()
first one) column D has
'if the value is i.e 2 then it should paste into the active cell whatever there is in Range F1:G1
'if other value is present in this case in cell D1 (it is always the D column) then other range would copied into the active cell
Range("F1:G1").Copy
ActiveCell.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub

View Replies!   View Related
Row Number Of Active Cell
I need to write code which would find the row number of my selected range (named 's')and then select the row beneath that.

View Replies!   View Related
Whole Row Of Active Cell Should Be Bold
The text of the active cell's row should be displayed BOLD. In other words, My cursor is on row 8, then this whole row should be bold. Is this possible ?

View Replies!   View Related
Delete Row Of Active Cell
I have a macro for deleting a row. I want iit to delete the row that I have selected, that is i if I mark cell B22 I want it to delete row 22. But it deletes the row under it, that is 23.

Sub Tabortrad()
Dim intRadnr As Integer
Dim intStartrad As Integer
Dim intSlutrad As Integer
intRadnr = ActiveCell.Row
intStartrad = ActiveSheet.Range("Första").Row + 1
intSlutrad = ActiveSheet.Range("Sista").Row - 2
If intRadnr < intStartrad Or intRadnr >= intSlutrad Then
MsgBox "Kan inte radera denna rad. Placera markören på en av bokföringsraderna mellan rad " & intStartrad & " och rad " & intSlutrad - 1 & "." & Chr(13) & "En ny rad kommer att infogas under den rad där markören står.", vbOKOnly, "Felaktig rad markerad".......................

View Replies!   View Related
Select Row For Active Cell
I need to select the row for the active cell without using an explicit RC address. I don't seem to be able to make the syntax work.

View Replies!   View Related
Range In Same Row As Active Cell
I'm looking for a piece of code, which would activate a certain Range i.e. the start of which would be in column A and the End in Column G. My problem is that the activated range of cells shuld be exactly in the same row as the currently active cell i.e. active cell B3 -> activated range A3:G3 .

View Replies!   View Related
Highlight Entire Row When Word Is In Cell
What I want to do is select all rows that contain the word conveyor in it. So far I have managed to select all the cells, I have also managed to select the entire row but one row at a time, I have even been able to turn all the cells a different color but I just want to highlight them for other formatting, copying, and several other things that need to be done. I have other documents this could be very useful in too so i want to make it a generic multi-line highlight rather than adding the formatting into the formula.

View Replies!   View Related
Highlight Entire Row Based On Cell Value
From what I understand this is a simple process but since I am new to programming and I am in need of help. I am trying to write into one of my macros that as it is searching in the sheet if it finds CRL in column C and if it finds a value between -1 and 100,000 in column K, then it will highlight the entire row green.What can I do to add this into my macro?

View Replies!   View Related
Highlight Row And Column On Move Down Of Cell
As I move down a cell, I would like the entire row and column be highlighted. Is that possible?

View Replies!   View Related
Moving Active Cell In Same Row To Column A
In my macro, I need to, from any column, move the active cell to column A, while remaining in the same row.

View Replies!   View Related
Macro To Select The Row That The Active Cell Is In
Using vba how do I tell a macro to select the row that the active cell is in?

I'm just using a basic delete Row macro but I'd like for the macro to automatically select the entire row when it's time to delete instead of me highlighting the section.

View Replies!   View Related
Highlite Or Underline Active Cell Row
Is there any way in excel to allow for whenever clicking on an active cell to make an underline or highlite the entire row that that cell is in?

View Replies!   View Related
Use Active Cell Row To Check Another Column
I've been racking my brains trying to figure this out but cant, please can someone assist. I need to write some vba code that looks at cells in column aa and ag (on the same row) and displays a message is ag > 0 and aa <> "Agency".

View Replies!   View Related
Offset Active Cell To Beginning Of Row
I need to make the active cell go to the beginning of the row (Column A). I tried setting up a variable to be the row.value, but that didn't work (the way I wrote it, which doesn't surprise me).

View Replies!   View Related
Highlight Entire Row When Any Cell In 1 Column Contains Specific Value
Code that will highlight a entire row when a cell from a column has a value of 0. It will check all the cell from Column C1:C100 and check all the cells that contains a 0 value. Need to highlight the entire row that contains this cell value and fill it in orange color.

View Replies!   View Related
Highlight Entire Row Base On A Single Cell Value
i have it to where is highlighting a single cell i will like the macro to highlight entire row base on a single cell value.

View Replies!   View Related
Return Active Cell's Location/row
I'm having trouble identifing a way to return a location for the position of the active cell. I've searched Excel help with "Position, location, return, activecell, etc." and I can't seem to figure this out. I know that it's possible, so that's why I'm on here!

...

Ok, say the active cell is currently "F1", and I need the location "F1" to identify the ROW to be used in a formula later, how would I go about that?

The current contents of cell "F1"' will be "REPLACE", but I need to change the words "REPLACE" in "F1" and other cells labeled "REPLACE" in column F to the following formula (where the "1" in "A1" is is the current row):

View Replies!   View Related
Merge Range Based On Active Cell Row
I am working on a macros that creates a new row for every data entry. Below is the macros that I have. In the new row, I want for the cells in columns F through O to merge right after creating the row. How do I go about this?

If Sigma = 0 Then

Selection.EntireRow.Insert ' New row for new entries
ActiveCell.Value = "NONE"
ActiveCell.Offset(1, 0).Select
End If

View Replies!   View Related
Determine Row Number Of Active Cell In CurrentRegion
I'm trying identify the active cell row number in a current region for viRows below. Currently I'm getting the active cell row number on the total worksheet.

With ActiveCell.CurrentRegion
viCols = .Columns.Count
viRows = .Range(ActiveCell.Row).Count
End With

View Replies!   View Related
Set Variable To Row & Active Cell Column
I have a sort procedure I have been working on. Sort By Active Cell Column
Now I would like to make sure the row of the activecell.column is row 7. I tried

Private Sub comp_myMonthlyReport_SortAscend()
Dim rng As Range
With ActiveWindow
rng = .ActiveCell(7, .ActiveCell.Column)
End With
Selection.Sort Key1:=rng, _
Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
End Sub

But I receive this error: Run-time error '91': Object variable or With block variable not set

View Replies!   View Related
Fill UserForms Controls Based On Active Cell/Row/Column
I am attempting to write an Excel Macro that would allow me to Click on a particular row and have the fields in my form fill with the data in the columns of the row.

I am fairly new to Macros and VBA, but know that this has got to be a possibility.


View Replies!   View Related
Pick Data From A Specific Row/column (eg 10/B) Related To Active Cell
I have a spreadsheet with my Periods along row 10. e.g. C10: "1", D10: "2", E10 "3", F10: "4", G10: "5" etc. (green on the attached sheet). I have my departments along column B, e.g. B11: "Baked" B12: "Fresh" B13: "Frozen" (yellow on the attached sheet)

what I need and cannot work out is some VBA code that will populate two variables (lets call them Period & Department) when I click on one of the figures. For example if I click on cell: if I click E14: Period would have the contents of cell E10, and Department the contents of cell B14.

if i click G14: Period would have the contents of G10, and Department the contents of cell B14 again. I know how to get the click on the cell to work properly etc, and I have code to slot these variables into that works very nicely, I just can't get this bit to work!!!!

View Replies!   View Related
Highlight Row If Cells In Row Meet Multiple Conditions
I have a spreadsheet of actions/tasks. I have a column with the expected completion dates of each action and another column stating whether the action/task is "open" or "closed". I would like to highlight any actions that have gone past their expected completion date and are marked as still being "open". Obviously i dont want any row that are closed to be highlighted. I know the =TODAY()- B1>0 formula will highlight the dates cell that have expired but how do i extend this formula to what i require.

View Replies!   View Related
ACtiveCell.row: Active Row Is Empty
I am trying to write a statement that sees if the the row below the active row is empty.

I have written the following but it is wrong. Please can someone correct it for me? Thanks!

If IsEmpty(ActiveCell.Row.Offset(1, 0)) = False Then
MsgBox "Not Empty"
End If


View Replies!   View Related
Highlight A Row
In a workbook. I have a cell with a hyperlink to different sheet in the same workbook.

I want to make it so, that when someone clicks on the hyperlink and is taken to the cell on the sheet i linked to, that the whole row of data highlights.

The highlight can only be turned on when someone clicks the hyperlink.

Does this require VBA script?

I am using Excel 2003.

View Replies!   View Related
Highlight The Row ...
I have a spredsheet with names going down column A and then a lot of data in the next 20 columns. It is sometime a challenge to see for which name the data is associated with becuase I have to look across a long row...

Is there a way in Excel, that when you click on a cell, it would HIGHLITE the row that you are in at that moment?

View Replies!   View Related
Highlight The Row
I'm using the code below to color every row where "MAIN" and string
starting by "FFR0" coexist, but it doesn't work

View Replies!   View Related
Highlight Every Other Row
I need a code that will highlight every other row in a some color.

I would like the macro to start in row 7 and use column A as a reference to know when to stop (last populated row in column A is where it needs to stop).

The rows that get highlighted can all get highlighted in the same color, and the entire row can be highlighted.

The twist to this is that there are hidden rows in the range and I want the macro to disregard those.

View Replies!   View Related
Highlight A Selected Row
just bought a 22" wide screen monitor and when working in excel it's difficult to follow from left to right in a row i am looking at. i have 22 columns of info that are in view at any given time. the row number on the left gets highlighted and the cell i happen to be in is outlined with a double line border. is there a way to get the whole row outlined like the single cell?

i know i can achieve this by clicking on the row itself, but i tend to move a lot around the spreadsheet via the arrow keys.

View Replies!   View Related
Highlight Row Cursor Is Currently In
I received this code from the board about a month ago. It works perfectly to highlight the row the cursor is currently in but, has one flaw. Once you place this code in the sheet module and the code initiates, it will "erase all other highlight colors" within your sheet. Is there a way to correct this problem?

Here is the code;

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = xlNone

With Target.EntireRow.Interior
.ColorIndex = 37
.Pattern = xlGray25
.PatternColorIndex = 24
End With
End Sub


View Replies!   View Related
Highlight Row With Vlookup
I am wanting to highlight a row if criteria is found in another workbook.

I expect VBA is needed and that is fine.

For row 9 I want this formula, but with a highlight result ...

View Replies!   View Related
Automatic Row Highlight
Is it possible to get a row highlighted just by placing your cursor on top of any cell along that particular row?

View Replies!   View Related
Highlight Every 5th Row
Is there a script to add a boarder or highlight every 5th row in excel?

View Replies!   View Related
Select / Highlight Every Other Row
I have done a search both on here and on the Internet in general, and I can't seem to get this question exactly answered...

How does one select/highlight every other row?

(Alternating)

(Other than Hold CTRL and select every other one)

Related issue:

How would you go about INSERTING alternating rows?
ie
Starting with rows
1
2
3
How would one make it into
1

2

3

?

View Replies!   View Related
IF Statement To Highlight A Row
I have a spreadsheet set up for recording a business's reply times and what i want to happen is if say for example the cell M4 was greater than the cell K4 i want that whole row to be highlighted red.


View Replies!   View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved