Adding Cells with Formula , Separate Values

Kaiser Khan

New Member
Joined
Dec 19, 2013
Messages
12
Hi All
I have cells with numbers. for example:

2
3
4
5

<tbody>
</tbody>

I would like to learn a formula that would add these all but show as below

14

<tbody>
</tbody>

when I go a click on this cell I want to see the value separately as below:
=2+3+4+5

<tbody>
</tbody>

Any Ideas please.
Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Let's say that your values are in cells A1-A4.
You could enter the formula:
Code:
= A1+A2+A3+A4
But that is the way the formula will appear in that cell.
If you actually want it to look like:
Code:
= 2+3+4+5
then you would either need to type it manually like this yourself, or use VBA like this to build that:
Code:
Sub MyAddFunction()
    Range("A5").Formula = "=" & Range("A1") & "+" & Range("A2") & "+" & Range("A3") & "+" & Range("A4")
End Sub
However, note if your do it that way, if you change one of the values in A1-A4, it will NOT update the formula automatically (unless you use Event Procedure VBA code). You will need to run the code again.
 
Upvote 0

Forum statistics

Threads
1,216,076
Messages
6,128,670
Members
449,463
Latest member
Jojomen56

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