Hi,
I have numbers in cell A1 which I change based on my sales.
I need to get the sum of all the entries in A1 to be shown in B1.
Please help.
Hi,
I have numbers in cell A1 which I change based on my sales.
I need to get the sum of all the entries in A1 to be shown in B1.
Please help.
Use a formula in B1
Formula:
=SumNums(A1)
EDITED:The above goes hand in hand with code
https://www.extendoffice.com/documen...ngle-cell.html
Below is just a formula that should work
Formula:
=SUMPRODUCT(MID(a1,ROW(OFFSET($A$1,,,LEN(a1))),1)+0)
Last edited by Sintek; 05-10-2017 at 04:45 AM.
Good Luck...
I don't presume to know what I am doing, however, just like you, I too started somewhere...
One-day, One-problem at a time!!!
If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
Also....Add a comment if you like!!!!
And remember...Mark Thread as Solved...
Excel Forum Rocks!!!
what I understood is that user want to enter i.e,200 in A1 and B1 should show 200
then if he changes the value of A1 from 200 to say 300 , now the b1 should display 500 hunderd.
Teach me Excel VBA
Try this
![]()
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target = Range("A1") Then Range("B1").Formula = "=" & Range("A1").Value + Range("B1").Value End If End Sub
To a worksheet code module
![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address(0, 0) <> "A1" Then Exit Sub Application.EnableEvents = False [b1] = [sum(a1:b1)] Application.EnableEvents = True End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks