Adding and subtracting numbers in a cell.

asd75

New Member
Joined
Aug 4, 2017
Messages
1
Hello, I'm new to excel and I don't even know if this is a good program to do sth like that, but I want to create a table where in every cell there would be possibility to add and sutract numbers manually. Sth like in this pic (just an example ):
Imgur: The most awesome images on the Internet
Is it possible?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
445576add
332311problem statement
select one of the 6 cells
and add or subtract in steps of 1
test
select 22 and add to it
by putting "add" in E1 and clicking macro button
click here

<tbody>
</tbody>
< < < a shape with macro assigned to it
B2 was 22
this macro increased it to 23
If Cells(1, 5) = "add" Then GoTo 100 Else GoTo 200
100 temp = ActiveCell
temp = temp + 1
ActiveCell = temp
GoTo 300
200 temp = ActiveCell
temp = temp - 1
ActiveCell = temp
300 End Sub

<colgroup><col span="14"></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,695
Messages
6,126,265
Members
449,308
Latest member
VerifiedBleachersAttendee

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