Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default adding to a number already in a cell

Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message ...
I am working on a basic worksheet. I have several numbers which I have to
add additional number to in that cell. I want the cell to reflect the total
and the display of the cell contents to list the individual numbers added.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 618
Default adding to a number already in a cell

Hi Rodney

won't this change the value stored in cell A1 rather than "the display of the cell contents to list the individual numbers added" ?

Cheers
JulieD

"Rodney POWELL" wrote in message ...
Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message ...
I am working on a basic worksheet. I have several numbers which I have to
add additional number to in that cell. I want the cell to reflect the total
and the display of the cell contents to list the individual numbers added.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default adding to a number already in a cell

Hi Rodney,

I think you missed:

display of the cell contents to list the individual numbers added.


Perhaps, change:

.Value = .Value + 1

to:

.Formula = "=" & .Formula & "+1"


---
Regards,
Norman



"Rodney POWELL" wrote in message
...
Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message
...
I am working on a basic worksheet. I have several numbers which I have to
add additional number to in that cell. I want the cell to reflect the total
and the display of the cell contents to list the individual numbers added.


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Follow-Up: adding to a number already in a cell

Maybe I misunderstood the question --


Sub AddMore()

Dim EqualSign$

Dim varNumberToAdd As Variant


varNumberToAdd = 3


With Worksheets("MySheet").Range("A1")

If Left$(.Formula, 1) < "=" Then EqualSign$ = "="

.Formula = EqualSign$ & .Formula & "+" & varNumberToAdd

End With

End Sub


Hopefully this is closer to what you were seeking,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com


"JulieD" wrote in message ...
Hi Rodney

won't this change the value stored in cell A1 rather than "the display of the cell contents to list the individual numbers added" ?

Cheers
JulieD

"Rodney POWELL" wrote in message ...
Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message ...
I am working on a basic worksheet. I have several numbers which I have to
add additional number to in that cell. I want the cell to reflect the total
and the display of the cell contents to list the individual numbers added.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default adding to a number already in a cell

Oops!

.Formula = "=" & .Formula & "+1"

Should be:

.Formula = .Formula & "+1"


---
Regards,
Norman



"Norman Jones" wrote in message
...
Hi Rodney,

I think you missed:

display of the cell contents to list the individual numbers added.


Perhaps, change:

.Value = .Value + 1

to:

.Formula = "=" & .Formula & "+1"


---
Regards,
Norman



"Rodney POWELL" wrote in message
...
Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message
...
I am working on a basic worksheet. I have several numbers which I have to
add additional number to in that cell. I want the cell to reflect the

total
and the display of the cell contents to list the individual numbers added.






  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default adding to a number already in a cell

Correction!

Sub AddMore()

With ActiveSheet.Range("A1")
If .HasFormula Then
.Formula = .Formula & "+1"
Else
.Formula = "=" & .Formula & "+1"
End If
End With

End Sub

---
Regards,
Norman



"Norman Jones" wrote in message
...
Oops!

.Formula = "=" & .Formula & "+1"

Should be:

.Formula = .Formula & "+1"


---
Regards,
Norman



"Norman Jones" wrote in message
...
Hi Rodney,

I think you missed:

display of the cell contents to list the individual numbers added.


Perhaps, change:

.Value = .Value + 1

to:

.Formula = "=" & .Formula & "+1"


---
Regards,
Norman



"Rodney POWELL" wrote in message
...
Conrad -- something like this ...


Sub AddMore()

With Worksheets("MySheet").Range("A1")

.Value = .Value + 1

End With

End Sub


--

Hope it Helps,

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"conrad" wrote in message
...
I am working on a basic worksheet. I have several numbers which I have

to
add additional number to in that cell. I want the cell to reflect the

total
and the display of the cell contents to list the individual numbers

added.






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
Adding number within a cell Jon A Excel Worksheet Functions 5 February 4th 08 04:06 PM
Adding a number to a cell that already has a number. paula Excel Discussion (Misc queries) 3 January 15th 08 04:41 PM
macro adding a number to a number already in a cell Tom Ogilvy Excel Programming 0 October 18th 03 04:34 PM
macro adding a number to a number already in a cell Don Guillett[_4_] Excel Programming 0 October 17th 03 05:21 PM
macro adding a number to a number already in a cell Ron de Bruin Excel Programming 0 October 17th 03 04:59 PM


All times are GMT +1. The time now is 09:53 AM.

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

About Us

"It's about Microsoft Excel"