Make Single Formula (Joint 2 Formula in 1 Formula)

muhammad susanto

Well-known Member
Joined
Jan 8, 2013
Messages
2,077
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
hi all,

how to joint & make simple in single formula like this :

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]sample raw[/TD]
[TD]after formula (single code)[/TD]
[/TR]
[TR]
[TD]CV ASRI INTI KARYA[/TD]
[TD]ASRI INTI KARYA, CV [/TD]
[/TR]
[TR]
[TD]PT ANDALAS LOGAMINDO[/TD]
[TD]ANDALAS LOGAMINDO, PT [/TD]
[/TR]
</tbody>[/TABLE]

maybe here code
Code:
[COLOR=#333333]=MID(A1,4,255)&" "&LEFT(A1,2)[/COLOR]
Code:
=REPLACE(A1,LEN(A1)-2,1,",")

note : red font just clue

how to make single formula?

any assistance, thanks in advance...

m.susanto
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
assume it always starts with 2 letters and a space...

Try:
=SUBSTITUTE(A1,LEFT(A1,3),"")&", "&LEFT(A1,2)
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

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