vbyellow

  1. B

    Change background color of all named ranges

    HI, I am trying to loop through all the cells in thisworkbook and change the background color to vbyellow. My code so far is as follows: Sub testdata() Dim nm As Variant For Each nm In ThisWorkbook.Names Range(nm.RefersTo).Interior.Color = vbYellow Next nm End Sub It draws an...
  2. A

    VBA to Highlight entire row with conditions

    Hi, I am looking for VBA to highlight the entire rows which satisfy any one of the following conditions for active sheet. 1. IF Column J blank and Column R has some data then Highlight(vbyellow) 2. If Column P and Column R both are ‘0’ and column J is ‘A’ then highlight (vbyellow)...
  3. A

    Overflow Error

    Hi Can anyone advise why do we get overflow error and how to get rid off it. sub mu() Set shgroup = ThisWorkbook.Worksheets("Grouping Data_DQ") lastrow1 = shgroup.Range("B" & Rows.Count).End(xlUp).Row Range("I2").Select ActiveCell.Interior.Color = vbYellow For U = 2 To lastrow1 Set MYNAME2...
  4. V

    Need code edit..

    What went wrong this code..? For k = 2 To UsdRws 'UsdRws To 2 Step -1 If Cells(k, 1).Interior.Color = vbYellow Then Rows(k).Copy Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1) Rows(k).Delete End If Next k
  5. S

    Conditional Formatting based on another cells

    hi Friends , Regarding conditional formatting i have checked couple of examples and created the below code however its not working not sure why , Could anyone please review and share where i am making a mistake , also if need to apply this only in the specific sheet names Raw , how do i append...
  6. Y

    Restricting Range

    Hello All, I use the below code to change the color of a row of cells when a user double clicks. Problem is the row beyond the table its meant to act on is affected. Is there a way to restrict EntireRow so that it only acts within a range? Thanks! Sub Worksheet_BeforeDoubleClick(ByVal Target...

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