Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default add up numbers !!!

hi i am having some differculties by putting some numbers in a column going
down and i have another column nex to it and i want the numbers from the
first column so that everytime i add some numbers to that column it will add
them up in he column next to it so its like a continues adding senquence if a
picture is needed email me ur email and ial email it to u thanks ryan. :)
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default add up numbers !!!

Right click sheet tabview codeinsert thisadjust to your columnSAVE
workbook

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 16 Then Exit Sub
Target.Offset(, 1) = _
Application.Sum(Range("p1:p" & Target.Row))
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"ryan101" wrote in message
...
hi i am having some differculties by putting some numbers in a column
going
down and i have another column nex to it and i want the numbers from the
first column so that everytime i add some numbers to that column it will
add
them up in he column next to it so its like a continues adding senquence
if a
picture is needed email me ur email and ial email it to u thanks ryan. :)


  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default add up numbers !!!

From your workbook and minimal description, IF you want the total of col B
shown in Col D whenever you input data in col B, then

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 2 Then Exit Sub
Target.Offset(, 2) = _
Application.Sum(Range("b1:b" & Target.Row))
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"ryan101" wrote in message
...
hi i am having some differculties by putting some numbers in a column
going
down and i have another column nex to it and i want the numbers from the
first column so that everytime i add some numbers to that column it will
add
them up in he column next to it so its like a continues adding senquence
if a
picture is needed email me ur email and ial email it to u thanks ryan. :)




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2002 : Convert Positive Numbers to Negative Numbers ? Mr. Low Excel Discussion (Misc queries) 2 November 6th 06 03:30 PM
change 2000 cells (negative numbers) into positive numbers lisbern Excel Worksheet Functions 2 August 16th 06 05:54 PM
VLOOKUP should compare numbers stored as text to plain numbers. VLOOKUP - Numbers stored as text Excel Worksheet Functions 0 March 31st 06 05:53 PM
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? C-Man23 Excel Worksheet Functions 3 January 19th 06 09:52 AM
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? C-Man23 Excel Worksheet Functions 1 January 9th 06 01:23 PM


All times are GMT +1. The time now is 02:17 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"