I assume that funny is a relative term...
Did you check my code ?
1) In the VBE, copy the code to a Worksheet(!) level.
2) Click to select cell D5.
3) Type 123 and press CTRL+C.
4) Move - with an arrow key - to Cell D6 and press CTRL+V.
[In both cases the entire row, 5 and then 6 will be Highlighted as light gray]
*** What did you get ? ***
Micky
Gord Dibben said:
Micky
Funny you should mention facing problems with copy/paste with some of the
codes.
Have you actually tried your own code?
How would you suggest copying and pasting a range of of cells when entire
rows are selected?
Gord
If you'll face any problems when trying to COPY/PASTE with some of the codes
- I would suggest not to color the Row but, instead, to Highlight it only .
Try the following code:
------------------------------------------------------------------------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.EntireRow.Select
Target.Activate
End Sub
---------------
Micky
:
I am dealing with a lot of data and I ma trying to highlight the row of the
cell I am currently working on. Any suggestions that Excel 2007 can perform
with out add-ons?
.