#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 788
Default Autofill - Excel

I want to use the autofill feature to complete column B (which is currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Autofill - Excel

Create a custom list first (toolsoptionscustom lists), then copy down and
autofill, then you might want to delete the list when you are done


--
Regards,

Peo Sjoblom



"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Autofill - Excel

=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Autofill - Excel

Doh! I misunderstood the OP


--
Regards,

Peo Sjoblom



"DJ Pomeroy" wrote in message
...
=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is
currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 788
Default Autofill - Excel

Thanks - I'm confortable with concatenating for Column C - my question was
regarding autofil for Column B; starting over at A when the value in Column A
changed to a different one. Your first suggestion was to create a custom list
- how does it know when to start over again.

"Peo Sjoblom" wrote:

Doh! I misunderstood the OP


--
Regards,

Peo Sjoblom



"DJ Pomeroy" wrote in message
...
=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is
currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Autofill - Excel

So I was close after all If your data goes like

A
B
C
A
B

then starts with ABC again? Import the above (or type it) into the custom
lists
then it will repeat like

A
B
C
A
B
A
B
C
A
B


and so on, note that it would be a good idea to delete the custom list after
you have finished since it is so easy to apply if you need to do it again


--
Regards,

Peo Sjoblom




"Chris" wrote in message
...
Thanks - I'm confortable with concatenating for Column C - my question was
regarding autofil for Column B; starting over at A when the value in
Column A
changed to a different one. Your first suggestion was to create a custom
list
- how does it know when to start over again.

"Peo Sjoblom" wrote:

Doh! I misunderstood the OP


--
Regards,

Peo Sjoblom



"DJ Pomeroy" wrote in message
...
=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is
currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.







  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 96
Default Autofill - Excel

Copy the below formula in cell B2 (assuming that's where your column starts).
Then copy it down to all necessary rows. It will # each item. However,
your list does need to be sorted by the values in column A for this to work.

=IF(A2=A1,B1+1,1)

Hope that helps.

"Chris" wrote:

Thanks - I'm confortable with concatenating for Column C - my question was
regarding autofil for Column B; starting over at A when the value in Column A
changed to a different one. Your first suggestion was to create a custom list
- how does it know when to start over again.

"Peo Sjoblom" wrote:

Doh! I misunderstood the OP


--
Regards,

Peo Sjoblom



"DJ Pomeroy" wrote in message
...
=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is
currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.





  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Autofill - Excel

Try this:

=IF(A1<"",A1&CHAR(64+COUNTIF($A$1:A1,A1)),"")

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Chris" wrote in message
...
Thanks - I'm confortable with concatenating for Column C - my question was
regarding autofil for Column B; starting over at A when the value in
Column A
changed to a different one. Your first suggestion was to create a custom
list
- how does it know when to start over again.

"Peo Sjoblom" wrote:

Doh! I misunderstood the OP


--
Regards,

Peo Sjoblom



"DJ Pomeroy" wrote in message
...
=A1&B1


"Chris" wrote in message
...
I want to use the autofill feature to complete column B (which is
currently
null) so I can then concatenate Columns A&B to make unique values (see
result).

Column A Column B Result
C100 A C100A
C100 B C100B
C100 C C100C
C203 A C203A
C203 B C203B
C304 A C304A
C304 B C304B
C304 C C304C

Is anyone able to assist?
Thanks.







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
How can I get excel to autofill the next column? jayman Excel Discussion (Misc queries) 2 May 27th 06 08:47 PM
How do you make the little autofill box in Excel go away? Steve K. Excel Discussion (Misc queries) 2 June 24th 05 07:19 PM
Autofill: Need to autofill one week block, (5) weekday only into cells. dstock Excel Discussion (Misc queries) 1 June 17th 05 08:21 PM
Need help with excel autofill VBA style William Whitlam via OfficeKB.com New Users to Excel 3 April 29th 05 09:03 AM
Excel 2002 autofill and offset Tim Excel Worksheet Functions 3 March 25th 05 06:11 PM


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