Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, I need to add the number which is there in the row. for example.. Code: -------------------- 0 4 2 1 0 0 0 2 -------------------- and i need to add those values how to do it in Excel instead of doing it manully? -- jayender.vs ------------------------------------------------------------------------ jayender.vs's Profile: http://www.excelforum.com/member.php...o&userid=28640 View this thread: http://www.excelforum.com/showthread...hreadid=484500 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i presume that the eight number are from A1 to H1
then try some thinglike this codestatement Range(Range("a1"), Range("a1").End(xlToRight)).Copy Destination:=Range("a5") or Rows("1:1").Copy Rows("7:7").PasteSpecial "jayender.vs" wrote in message ... Hi, I need to add the number which is there in the row. for example.. Code: -------------------- 0 4 2 1 0 0 0 2 -------------------- and i need to add those values how to do it in Excel instead of doing it manully? -- jayender.vs ------------------------------------------------------------------------ jayender.vs's Profile: http://www.excelforum.com/member.php...o&userid=28640 View this thread: http://www.excelforum.com/showthread...hreadid=484500 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Do you mean
=SUM(5:5) -- HTH RP (remove nothere from the email address if mailing direct) "jayender.vs" wrote in message ... Hi, I need to add the number which is there in the row. for example.. Code: -------------------- 0 4 2 1 0 0 0 2 -------------------- and i need to add those values how to do it in Excel instead of doing it manully? -- jayender.vs ------------------------------------------------------------------------ jayender.vs's Profile: http://www.excelforum.com/member.php...o&userid=28640 View this thread: http://www.excelforum.com/showthread...hreadid=484500 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto extract data & inserts rows additional rows automatically | Excel Discussion (Misc queries) | |||
Enabling option „Format rows“ to hide/unhide rows using VBA-code? | Excel Discussion (Misc queries) | |||
Copy rows of data (eliminating blank rows) from fixed layout | Excel Discussion (Misc queries) | |||
Excel 2003 -Rows hidden. Scrolling unhides rows ! How do I stop th | Excel Discussion (Misc queries) | |||
Pivot Tables: How do I show ALL field rows, including empty rows?? | Excel Worksheet Functions |