worksheet event

  1. C

    VBA- Worksheet event multiple vlookup

    Hi excel Masters, Can any of you provide a VBA code in order to populate some vlookups value only once any cells has been changed in a specific range. (tab calculation column A1 to A100) Data source in tab Data (Name, Age, Sex, Country, town....) from col A to E In Tab calculation for example...
  2. C

    Worksheet event / Add new cell event change to call new macro

    Hi Excel Jedis, I am using the below event change for 3 cells ("C2,F2,G6") and calling SortTableChartWB. how can i trick the below code to add another cell change (O6) to call "Macro2". As usual, thanks in advance Private Sub Worksheet_Change(ByVal Target As Range) Dim Changed As Range, c...
  3. C

    VBA worksheet event to delete dependent validation list

    Hi Excel jedis, how can I change the below code to only clear a specific cell instead of column . (lets say cell B2 and C2 and clearing C2 when B2 i changed.. ) As usual, thanks inadvance Private Sub Worksheet_Change(ByVal Target As Range) On Error Resume Next If Target.Column = 2 Then If...
  4. C

    Best Approach for this Worksheet_Change

    Hello, I have two ranges: N11:N510 and S11:S510 that can change (vlookups) based on a data validation list in Cell E8. Regardless of the value in E8, I only want the worksheet change to trigger if a value in N11:N510 or S11:S510 changed. If the change macro determines that a change has...
  5. D

    VBA Worksheet_change or Worksheet_selectionchange not auto-triggered

    Hi Experts, I have 2 worksheets which I coded (on each worksheet) to autofilter as per criteria whenever user select from the validation list. However, I don't know why it only works on the first worksheet. The 2nd worksheet only will autofilter when I click elsewhere and then click back the...
  6. M

    VBA Worksheet Event when cell changes by formula

    Hi All Wondering whether anybody would be able to shed some light to whether it is possible to trigger a worksheet event when a cell changes through formula as opposed to the cell being change manually? Many thanks, Mizogy The code I have so far; Private Sub Worksheet_Change(ByVal...
  7. K

    Previously Used Code Not Working

    Hello, I've used this code before in a worksheet; it used to work fine, and now it's not working: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 1 Then Target.Offset(0,1) = Now End If End Sub It used to put a date/time stamp in column B whenever I altered...

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