I have the following rows in my excel spreadsheet.
============================================ | Male | Jack | 8765 | India | ============================================ | Female | Jill | 5425 | Japan | ============================================ | Male | Pet | 8541 | China | ============================================ | Female | Joan | 2156 | Australia | ============================================
How do I use excel formula to combine the above rows into a single cell. (because the data above might change quite frequently and I do not wish to do it manually.)
====================================== | Male Jack 8765 India | | Female Jill 5425 Japan | | Male Pet 8541 China | | Female Joan 2156 Australia | ======================================
(For your info - I check that Microsoft are able to combine the same content in a row
============================================ | Male | Jack | 8765 | India | ============================================
to a single row
====================================== | Male Jack 8765 India | ======================================
using the formula CONCATENATE or & as mention in http://office.microsoft.com/en-us/excel-help/combine-the-contents-of-multiple-cells-HA010248390.aspx?CTT=5&origin=HA010250379.
but I want to use a excel formula to multiple rows into a single cell. Possible?