Return missing text

tonyrensya

New Member
Joined
Jul 24, 2013
Messages
21
Office Version
  1. 2019
Platform
  1. Windows
  2. MacOS
Hello there, I have a problem on returning missing text from a decimated list. how can it be done with formula? Thank you for your time!

A1: abcdefg
A2: abdeg
A3 expected value: cf
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Is this what you mean?

23 09 08.xlsm
A
1abcdefg
2abdeg
3cf
Missing
Cell Formulas
RangeFormula
A3A3=REDUCE("",MID(A1,SEQUENCE(LEN(A1)),1),LAMBDA(a,b,a&IF(ISERROR(FIND(b,A2)),b,"")))
 
Upvote 0
Another option maybe:
Book1
A
1abcdefg
2abdeg
3cf
Sheet1
Cell Formulas
RangeFormula
A3A3=TEXTJOIN(,,TEXTSPLIT(A1,MID(A2,SEQUENCE(,LEN(A2)),1)))
 
Upvote 0
Another option maybe:
Good idea, but simpler to use CONCAT instead of TEXTJOIN with a null joiner.
(Can also save a comma by not needing to use columns in the SEQUENCE function. 😎 )

23 09 08.xlsm
A
1abcdefg
2abdeg
3cf
Missing
Cell Formulas
RangeFormula
A3A3=CONCAT(TEXTSPLIT(A1,MID(A2,SEQUENCE(LEN(A2)),1)))
 
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,077
Members
449,094
Latest member
mystic19

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