如何通过Ms-excel公式过滤Excel列值?
我想从下面的数据中获取过滤列字符串。
URL PreFix OutPut ConcatStrings
────────────────────────────────────────────────────────────────────────────────────────────────────────────────
http://AbCD.com/grouponorange-county | Deals | orangecounty | Dealsorangecounty
在,
Column-1 第一列有一个 URL 字符串。
Column-2 这里有固定的单词,例如。优惠或任何固定字符串
Column-3 想要获取此“http://AbCD.com/groupon”字符串之后的字符串
有橙色国家然后删除所有特殊字符,所以这里输出是橙色的国家。
Coulmn-4 ConcatString " [Column-2] + [Column-3] "
我如何在 Microsoft Excel 工作表中执行此操作。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第 4 列:使用公式
=B:B&C:C
。第 3 列:如果您始终具有相同的主机名,则可以使用:
如果它具有不同的主机名,请使用:(
编辑)使用
Alt+F11
进入 VBA,转到Insert< /代码> >
Module
,并将其粘贴到:然后,您可以在 Excel 中使用
=remove_special_characters()
作为上述函数的包装器。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+F11
to 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.