Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Counting up with numbers and text

Hi i am trying to count up +1 to each cell which is easy enough but i have
added text to the original cell and it has stopped working. for example cell
1 has LN1000 my formulae at the moment reads (A1+1) i want the answer to be
LN1001 is it possible? I am a novice at excel so i reckon its dead essy for
an expert. Thanks in advance. Phil
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Counting up with numbers and text

If you just want to increase LN1000 with one for each cell just copy it
down, if you need a formula use

=LEFT(A1,2)&RIGHT(A1,4)+1

and copy down


--
Regards,

Peo Sjoblom



"pwalters" wrote in message
...
Hi i am trying to count up +1 to each cell which is easy enough but i have
added text to the original cell and it has stopped working. for example
cell
1 has LN1000 my formulae at the moment reads (A1+1) i want the answer to
be
LN1001 is it possible? I am a novice at excel so i reckon its dead essy
for
an expert. Thanks in advance. Phil



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Counting up with numbers and text

In B1 enter =A1 & ROW(A1)

Drag/copy down or double-click on B1 fill handle.


Gord Dibben MS Excel MVP

On Tue, 19 Jun 2007 09:07:39 -0700, pwalters wrote:

Hi i am trying to count up +1 to each cell which is easy enough but i have
added text to the original cell and it has stopped working. for example cell
1 has LN1000 my formulae at the moment reads (A1+1) i want the answer to be
LN1001 is it possible? I am a novice at excel so i reckon its dead essy for
an expert. Thanks in advance. Phil


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Counting up with numbers and text

Will not work, it will change from

LN1000

to

LN10001


not to

LN1001

then in the third row it will return

LN100012

in the fourth

LN1000123

and so on


--
Regards,

Peo Sjoblom





"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
In B1 enter =A1 & ROW(A1)

Drag/copy down or double-click on B1 fill handle.


Gord Dibben MS Excel MVP

On Tue, 19 Jun 2007 09:07:39 -0700, pwalters
wrote:

Hi i am trying to count up +1 to each cell which is easy enough but i have
added text to the original cell and it has stopped working. for example
cell
1 has LN1000 my formulae at the moment reads (A1+1) i want the answer to
be
LN1001 is it possible? I am a novice at excel so i reckon its dead essy
for
an expert. Thanks in advance. Phil




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Counting up with numbers and text

Thanks Peo

Poor quality control in the testing dept. Some heads will roll<g

Maybe OP could just enter LN1000 in a cell then drag/copy down the column
returning

LN1001
LN1002
Ln1003

and onwards.


Gord

On Tue, 19 Jun 2007 10:58:50 -0700, "Peo Sjoblom" wrote:

Will not work, it will change from

LN1000

to

LN10001


not to

LN1001

then in the third row it will return

LN100012

in the fourth

LN1000123

and so on




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Counting up with numbers and text

That's what I suggested as well since it seems that he just wants to change
it that way


--
Regards,

Peo Sjoblom



"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Thanks Peo

Poor quality control in the testing dept. Some heads will roll<g

Maybe OP could just enter LN1000 in a cell then drag/copy down the column
returning

LN1001
LN1002
Ln1003

and onwards.


Gord

On Tue, 19 Jun 2007 10:58:50 -0700, "Peo Sjoblom"
wrote:

Will not work, it will change from

LN1000

to

LN10001


not to

LN1001

then in the third row it will return

LN100012

in the fourth

LN1000123

and so on




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Counting up with numbers and text

Agree with Gord, or you could go fancy with Edit|Fill|Series...
But if you really must use a formula, go with the original suggestion from
Peo, but make sure to not put the formula in A1 !!! Drag the fill handle
down as far as you like.


A1 type your value of LN1000
A2 =LEFT(A1,2)&RIGHT(A1,4)+1


Christine



"Peo Sjoblom" wrote:

That's what I suggested as well since it seems that he just wants to change
it that way


--
Regards,

Peo Sjoblom



"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Thanks Peo

Poor quality control in the testing dept. Some heads will roll<g

Maybe OP could just enter LN1000 in a cell then drag/copy down the column
returning

LN1001
LN1002
Ln1003

and onwards.


Gord

On Tue, 19 Jun 2007 10:58:50 -0700, "Peo Sjoblom"
wrote:

Will not work, it will change from

LN1000

to

LN10001


not to

LN1001

then in the third row it will return

LN100012

in the fourth

LN1000123

and so on





  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Counting up with numbers and text

Thanks everyone for your time and effort, i have inputted the formula as the
number to be changed appears in different places on a spread sheet and not in
a row or column. i changed the A1 to whatever the cell was and it works just
fine.
how does it do it by the way then in future i can try it with other things.

once again thanks very very much
Phil

"christine b" wrote:

Agree with Gord, or you could go fancy with Edit|Fill|Series...
But if you really must use a formula, go with the original suggestion from
Peo, but make sure to not put the formula in A1 !!! Drag the fill handle
down as far as you like.


A1 type your value of LN1000
A2 =LEFT(A1,2)&RIGHT(A1,4)+1


Christine



"Peo Sjoblom" wrote:

That's what I suggested as well since it seems that he just wants to change
it that way


--
Regards,

Peo Sjoblom



"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Thanks Peo

Poor quality control in the testing dept. Some heads will roll<g

Maybe OP could just enter LN1000 in a cell then drag/copy down the column
returning

LN1001
LN1002
Ln1003

and onwards.


Gord

On Tue, 19 Jun 2007 10:58:50 -0700, "Peo Sjoblom"
wrote:

Will not work, it will change from

LN1000

to

LN10001


not to

LN1001

then in the third row it will return

LN100012

in the fourth

LN1000123

and so on




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
Counting a mixed text/number column based on text in another colum Sierra Vista Steve Excel Discussion (Misc queries) 3 December 17th 06 05:30 PM
Counting Occurrence of Text within Text in Cells in Range. Jeremy N. Excel Worksheet Functions 1 September 8th 05 05:16 AM
Counting rows containing data (both numbers and text) mconnolly Excel Worksheet Functions 4 August 29th 05 03:58 PM
Counting NUMBERS &/or TEXT from a column to other sheet ? Trixie Excel Worksheet Functions 4 March 3rd 05 07:59 PM
Counting Numbers with Text scottymelloty Excel Worksheet Functions 6 November 22nd 04 08:31 PM


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