I'm trying to write a part of a program that will allow the users to select a cell on a spreadsheet and in the process change the number in the cell that has been selected with their own input. Here is the following code:
CODE.....
ans = Application.InputBox("Type in the cell you wish to_ change.", Cell)
ActiveCell = ans
inp = InputBox("Type in the new number.", Cell)
inp = ActiveCell
CODE...
The cells ranges differ as each sheet is created.
If you have any questions, please let me know. Thanks in advance!
CODE.....
ans = Application.InputBox("Type in the cell you wish to_ change.", Cell)
ActiveCell = ans
inp = InputBox("Type in the new number.", Cell)
inp = ActiveCell
CODE...
The cells ranges differ as each sheet is created.
If you have any questions, please let me know. Thanks in advance!