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 increase anymore each time I run the macro clicking a button (going 2,3,4, etc...)
How can I do?
Thank you
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 increase anymore each time I run the macro clicking a button (going 2,3,4, etc...)
How can I do?
Thank you