I want to get filter column string from below Data.
URL PreFix OutPut ConcatStrings
────────────────────────────────────────────────────────────────────────────────────────────────────────────────
http://AbCD.com/grouponorange-county | Deals | orangecounty | Dealsorangecounty
In,
Column-1 first column there is an URL string.
Column-2 There is fixed words here ex. Deals or any fixed string
Column-3 Want to get string after this “http://AbCD.com/groupon” string
there is orange-Country then remove all special character so here output is orangeCountry.
Coulmn-4 ConcatString ” [Column-2] + [Column-3] “
How I can do in Microsoft Excel sheet.
Column 4: use the formula
=B:B&C:C.Column 3: if you always have the same hostname, you can use:
If it has a different hostname, use:
(edit) Use
Alt+F11to go into VBA, go toInsert>Module, and paste this in:You can then use
=remove_special_characters()in Excel as a wrapper around the functions above.