cell change function

  1. T

    Multiple Cell Function on Cell Change

    Hello I am have a sheet that I enter large numbers eg 500,000 etc and to reduce typing zeros, I would like cells E9, E37 and E40 to be multiplied by 1000 on cell change. I can implement this with a single sub but when adding in additional subs I get an error. I have looked extensively to fix...
  2. V

    Run a Macro if cell value is greater than 1 but not empty

    Evening all, I am after a bit of simple help. I want to run a macro when a cell with in a range such as A3:A500 changes from empty to a value. but not the other way i.e clearing the cell of data. I have tried using various Worksheet_Change(ByVal Target As Range) methods but it Is still...
  3. C

    The Final Pieces to the Puzzle, anyone?

    Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim c As Range If Target.Cells.Count > 1 Then Exit Sub Set c = Intersect(Range("C14:C28"), Target) If c Is Nothing Then Exit Sub Cells(Target.Row, 1).Resize(, 5) = "" Target = "X" End Sub I had seen this on a previous post in...
  4. M

    Multiple Worksheet Change Events - Excel VBA

    Hi All I am having trouble combining two worksheet change event codes into one. Either event could happen whilst they are not dependant on each other. Can you combine multiple worsheet change events based on independant cell changes. I've included the two macros below which I need to combine...
  5. J

    Record Cell Value Change

    I need a function that records the number of times a cell in a worksheet has a value change. For example if cell J5 has the value 6 entered and that cell value is changed to 15 this would be recorded as 1 in the cell using the function. If that Cell value is then changed to 11, the cell change...

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