S
Steven North
Using the Concatenate function I would do it this way.
A)
=CONCATENATE(A1,B1) Which would result in
99999XXXXX-999-99
B)
=CONCATENATE(A1," ",B1) Which would result in
99999 XXXXX-999-99
C)
=CONCATENATE(A1,"-",B1) Which would result in
99999-XXXXX-999-99
You can replace A1 & B1 with the cell references of your
choice.
characters long all numeric and a separate column of data
that looks like this XXXXX-999-99 (where the X symbolizes
either an alphabet letter or the number 0. The 9's all
symbolize numerics with dashes between them as shown.
export the resultant single column of data which now would
contain both the main and the associated subsidiary
account number assigned to each main account.
A)
=CONCATENATE(A1,B1) Which would result in
99999XXXXX-999-99
B)
=CONCATENATE(A1," ",B1) Which would result in
99999 XXXXX-999-99
C)
=CONCATENATE(A1,"-",B1) Which would result in
99999-XXXXX-999-99
You can replace A1 & B1 with the cell references of your
choice.
separate columns of data (a major account number = 5-----Original Message-----
I am an auditor faced with the problem of having two
characters long all numeric and a separate column of data
that looks like this XXXXX-999-99 (where the X symbolizes
either an alphabet letter or the number 0. The 9's all
symbolize numerics with dashes between them as shown.
together into a single column of data so that I mightI need to bring these two separate columns of data
export the resultant single column of data which now would
contain both the main and the associated subsidiary
account number assigned to each main account.
99999 and XXXXX-999-99Again pictorally what I am attempting to do is this:
A) Given two separate columns of data
without spaces 99999XXXXX-999-99I need to bring them together into a single column
99999 and XXXXX-999-99B) Given two separate columns of data
with a space between them like so 99999 XXXXX-999-99I need to bring them together into a single column
99999 and XXXXX-999-99C) Finally given two separate columns of data
with a dash in between them like so 99999-XXXXX-999-99I need to bring them together into a single column