Combinar (no concatenar) dos columnas

elratonperez

New Member
Joined
Dec 12, 2011
Messages
3
Buenas. A ver si me podéis ayudar y es posible hacer lo siguiente:

Necesito combinar todos los dados de dos columnas, de la siguiente forma:

Columna A: A1, A2, A3
Columna B: B1, B2, B2
Columna con datos combinados: A1B1, A1B2, A1B3, A2B1, A2B2, A2B3, A3B1, A3B2, A3B3​

Gracias de antemano. ¡Saludos!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
En tal caso, intentar la siguiente fórmula en la columna C:

Code:
= OFFSET($A$1:$A$3, CEILING(ROW() / 3, 1) - 1, 0, 1, 1) & OFFSET($B$1:$B$3, MOD(ROW() + 2, 3), 0, 1, 1)
 
Upvote 0
Naturalmente reemplazar los comandos en inglés a su equivalente en español (que lamentablemente desconozco).
 
Upvote 0
Perdón por la demora en responder. La fórmula funciona perfectamente, aunque me costó un poco hacerla funcionar. En español queda de la siguiente forma:

=DESREF($A$1:$A$3;MULTIPLO.SUPERIOR(FILA()/3;1)-1;0;1;1)&DESREF($B$1:$B$3;RESIDUO(FILA()+2;3);0;1;1)

Muchas gracias por el aporte. ¡Saludos!
 
Upvote 0
Perdón por la demora en responder. La fórmula funciona perfectamente, aunque me costó un poco hacerla funcionar. En español queda de la siguiente forma:

=DESREF($A$1:$A$3;MULTIPLO.SUPERIOR(FILA()/3;1)-1;0;1;1)&DESREF($B$1:$B$3;RESIDUO(FILA()+2;3);0;1;1)

Muchas gracias por el aporte. ¡Saludos!

Me alegra que funcione, Ratón Pérez, y gracias por poner la fórmula con los comandos en español, me resulta útil conocerlos.
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,003
Members
449,203
Latest member
Daymo66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top