string move from down cell to up beside exiting cell sting without change

AT BABU

Board Regular
Joined
Oct 12, 2018
Messages
54
Office Version
  1. 2016
Platform
  1. Windows
Hi All

string move from down cell to up beside exiting cell sting without change

[TABLE="width: 129"]
<colgroup><col></colgroup><tbody>[TR]
[TD]23624718,[/TD]
[/TR]
[TR]
[TD]23624719,[/TD]
[/TR]
[TR]
[TD]23624720,[/TD]
[/TR]
[TR]
[TD]23624721,[/TD]
[/TR]
[TR]
[TD]23624722,

I need like thsi [/TD]
[/TR]
</tbody>[/TABLE]

[TABLE="width: 409"]
<tbody>[TR]
[TD="class: xl65, width: 409"]23624718,23624719,23624720,23624721,23624722

Thank you All[/TD]
[/TR]
</tbody>[/TABLE]
 
Excel 2016 contain both TEXTJOIN and CONCAT.
Are you sure that is the version you are on?
Is it Windows or Mac based?

Also, what is the default function argument delimiter? Or some non-American versions, it may be set to a semi-colon rather than a comma, so you would need to use:
Code:
=TEXTJOIN("";TRUE;A1:A5)
 
Upvote 0

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Upvote 0
Sorry to contradict Joe but actually Excel 2016 stand-alone (standard as described by the OP) does not include TEXTJOIN or CONCAT - I previously had that version. You need to have Office 365 or Excel 2019. Ref: https://support.office.com/en-us/art...6-694cbd6b4ca2
No need to apologize, I was mistaken. I have it at work, and I thought we had Excel 2016 (but it looks like we actually have 365).
Thanks for the correction.
 
Upvote 0
AT BABU,

So you may need to do something like:
Code:
=A1 & A2 & A3 & A4 & A5
or
Code:
=CONCATENATE(A1,A2,A3,A4,A5)
 
Upvote 0

Forum statistics

Threads
1,223,234
Messages
6,170,891
Members
452,366
Latest member
TePunaBloke

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