increase cell

  1. N

    Increment cells in a specific way

    Hello, I have a fairly specific question and not knowing how to formulate it, I did not find an answer on the internet. Let's take a B1 cell, I want in this box B1 to have the maximum value among the values of A1:A50, so I write =MAX(A1:A50). Now in my next box (B2), this time I want to have...
  2. R

    Add button to increase/decrease cell value

    Hi, I want to add a button either side of a cell to decrease/increase the value of the middle cell by 1. I know how to do this the long winded way by adding an individual button and targeting the specific cell, but going into the macro code to edit the target cell for will take ages, especially...
  3. I

    Increase value in a second spreasheet

    Hi, got this code to increase value by one (same position, row and column, of the active cell) in a second spreadsheet ("foglio2")... Sheets("foglio2").Cells(ActiveCell.Row, ActiveCell.Column) = ActiveCell.Value + 1 but it doesn't work cause it only count 1 in the second spreasheet, doesn't...
  4. E

    Increase Cell by 1 if another cell changes to a certain value using macros

    Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count > 1 Then Exit Sub If Target.Address(False, False) = "C2" Then Range("F2").Value = Range("F2").Value + 1 End Sub I am using the follow macros code when I right click my spreadsheet and enter...

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