MS Excel 03 - 删除 A 列中具有活动字符串标识符的行,同时连接其他值
我有一个作为数据源提供的 xml 文档(我无法立即修改数据源的源),并且我使用 xml 导入将其导入到 excel 中。这个 xml 没有附带模式,所以我得到的表最终有一大堆重复的标识符,因为唯一值分布在整个电子表格中。
XML in XLS
Col1(IDnum) Col2(name) Col3(Type) Col4(Category) Col(etc)
=================================================================
0011 Item 01 6B
0011 Item xxj9 7B
0011 Item xxj9
0011 Item 02
0011 Item 01 xxj9 6B
0012 etc
我需要删除 columnA 字符串/数字匹配的所有行,同时连接 Col3、Col4 和 Col3 中的所有潜在值。 Col5 在一起,所以看起来像这样,
Col1(IDnum) Col2(name) Col3(Type) Col4(Category) Col(etc)
=================================================================
0011 Item 01, 02 xxj9 6B, 7B
什么 Visual Basic 方法可以让我完成这个任务?
谢谢
I have this xml document that is provided as a data feed (right off the bat I can not modify the source of the data feed) and i import it into excel with the xml import. there is no schema that comes with this xml so i get a table that ends up having a whole bunch of duplicates for an identifier, because of the unique values spread throughout the spreadsheet.
XML in XLS
Col1(IDnum) Col2(name) Col3(Type) Col4(Category) Col(etc)
=================================================================
0011 Item 01 6B
0011 Item xxj9 7B
0011 Item xxj9
0011 Item 02
0011 Item 01 xxj9 6B
0012 etc
I need to delete all rows where columnA string/number matches while concatenating all potential values from Col3, Col4 & Col5 together so it looks like this
Col1(IDnum) Col2(name) Col3(Type) Col4(Category) Col(etc)
=================================================================
0011 Item 01, 02 xxj9 6B, 7B
what visual basic method would allow me to accomplish this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许:
Perhaps: