Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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. :) |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() It didn't seem so in my xl2003 on VHP on a very fast computer. -- Don Guillett Microsoft MVP Excel SalesAid Software "Sandy Mann" wrote in message ... Don, Not a big overhead but without Application.EnableEvents = False / Application.EnableEvents = True your code is actually firing twice. At least it does in my XL97 -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Don Guillett" wrote in message ... 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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002 : Convert Positive Numbers to Negative Numbers ? | Excel Discussion (Misc queries) | |||
change 2000 cells (negative numbers) into positive numbers | Excel Worksheet Functions | |||
VLOOKUP should compare numbers stored as text to plain numbers. | Excel Worksheet Functions | |||
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? | Excel Worksheet Functions | |||
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? | Excel Worksheet Functions |