Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Entering digits in a cell with numbers already inside cell

Hi All,

I have a question as to whether there is a fast and easy way to enter
some digits into a cell that already has digits. For example, I have
a cell with the numbers 123456 and I would like to add 149 to the
beginning without having to manually go into the cell and add 149 to
it, as I have a LOT of cells to do this to. At the end, the result
should be 149123456. Any ideas?? I appreciate any help. Thank you in
advance!!

Jen
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default Entering digits in a cell with numbers already inside cell

On Aug 18, 3:56 pm, wrote:
Hi All,

I have a question as to whether there is a fast and easy way to enter
some digits into a cell that already has digits. For example, I have
a cell with the numbers 123456 and I would like to add 149 to the
beginning without having to manually go into the cell and add 149 to
it, as I have a LOT of cells to do this to. At the end, the result
should be 149123456. Any ideas?? I appreciate any help. Thank you in
advance!!

Jen


If it is always "149" that will be added, use Concatenate in another
column. Then copy the result back to your original column, Paste
Values only. Then delete the extra column.
=149&A1 or =CONCATENATE(149,A1)

If you have different things to add to each cell, use 2 columns. One
to enter the new digits and the 2nd for the Concatenate. Then do the
copying.

Or, for easier data entry, you can press F2 and then Home to get to
the beginning of a cell. But this will take longer.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,942
Default Entering digits in a cell with numbers already inside cell

hi
you could add a helper column next to your column of numbers then in the
helper column, put this formula.....
assuming the number column is column A....
=149 & A2
copy down the helper column to desired end.
then copy the helper column and paste special values
delete column A(or archive)

Regards
FSt1
" wrote:

Hi All,

I have a question as to whether there is a fast and easy way to enter
some digits into a cell that already has digits. For example, I have
a cell with the numbers 123456 and I would like to add 149 to the
beginning without having to manually go into the cell and add 149 to
it, as I have a LOT of cells to do this to. At the end, the result
should be 149123456. Any ideas?? I appreciate any help. Thank you in
advance!!

Jen

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Entering digits in a cell with numbers already inside cell

If the OP wants numbers instead of text he/she might want to add something
to
keep it numerical


=--(149&A1)



--


Regards,


Peo Sjoblom

"Spiky" wrote in message
...
On Aug 18, 3:56 pm, wrote:
Hi All,

I have a question as to whether there is a fast and easy way to enter
some digits into a cell that already has digits. For example, I have
a cell with the numbers 123456 and I would like to add 149 to the
beginning without having to manually go into the cell and add 149 to
it, as I have a LOT of cells to do this to. At the end, the result
should be 149123456. Any ideas?? I appreciate any help. Thank you in
advance!!

Jen


If it is always "149" that will be added, use Concatenate in another
column. Then copy the result back to your original column, Paste
Values only. Then delete the extra column.
=149&A1 or =CONCATENATE(149,A1)

If you have different things to add to each cell, use 2 columns. One
to enter the new digits and the 2nd for the Concatenate. Then do the
copying.

Or, for easier data entry, you can press F2 and then Home to get to
the beginning of a cell. But this will take longer.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Entering digits in a cell with numbers already inside cell

You could select the cells you want to add the 149 in front of and run this
macro...

Sub Concatenate149()
Dim C As Range
For Each C In Selection
C.Value = "149" & C.Value
Next
End Sub

Rick

wrote in message
...
Hi All,

I have a question as to whether there is a fast and easy way to enter
some digits into a cell that already has digits. For example, I have
a cell with the numbers 123456 and I would like to add 149 to the
beginning without having to manually go into the cell and add 149 to
it, as I have a LOT of cells to do this to. At the end, the result
should be 149123456. Any ideas?? I appreciate any help. Thank you in
advance!!

Jen


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
have date show in cell when only entering numbers cjlatta Excel Worksheet Functions 3 July 24th 08 08:11 PM
Entering 16 digit numbers in cell Dutch New Users to Excel 3 June 24th 07 11:28 PM
Entering numbers into a cell keestrokes Excel Discussion (Misc queries) 2 March 17th 07 02:53 AM
Complications Entering numbers in a cell Ms Xtine Excel Discussion (Misc queries) 2 August 16th 06 10:00 PM
Entering Numbers in a Cell Tawn Tawn Excel Discussion (Misc queries) 2 May 11th 06 03:48 PM


All times are GMT +1. The time now is 09:08 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"