Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations KootK on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bfrkhjk

  1. bfrkhjk

    Add-In to highlight entire row/column of selected cell in Excel?

    Two alternatives 1. Use script from 22-AUG and copy the value from the forumla entry (or double-click cell, drag mouse over values, press ctrl-c) which uses Windows copy instead of Excel cell copy. 2. Modify script as below. With this, you need to press ESC to get out of Excel copy mode...
  2. bfrkhjk

    Add-In to highlight entire row/column of selected cell in Excel?

    Simplification of above post. Also, when using code from first post, I was getting slow response once I updated data in a cell. This approach does not use conditional formatting and does not affect the speed after updates: Private Sub Worksheet_SelectionChange(ByVal Target As Range)...
  3. bfrkhjk

    Add-In to highlight entire row/column of selected cell in Excel?

    Simplification of above post. Also, when using code from first post, I was getting slow response once I updated data in a cell. This approach does not use conditional formatting and does not affect the speed after updates. Also it does not require a separate module for the ActRow and ActCol...
  4. bfrkhjk

    Add-In to highlight entire row/column of selected cell in Excel?

    This code is the same concept but does not need conditional formatting. Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Len(ActCol) > 0 Then 'Not first time in worksheet Cells(ActRow, ActCol).EntireRow.Interior.ColorIndex = xlColorIndexNone...

Part and Inventory Search