在 Calc 中合并数据
我有 1 个包含两列的电子表格:sku
和 old_url
,另一个包含 sku
和 new_url
。
我想用 sku
、old_url
和 new_url
制作一个新工作表。
有些 SKU 不在两者中,应将其丢弃。
这可能吗?
I have 1 spreadsheet with two columns: sku
and old_url
, and another with sku
and new_url
.
I want to make a new sheet with sku
, old_url
and new_url
.
Some of the SKUs aren't in both, these should be discarded.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用 ISBLANK()、OR() 和 IF() 函数来完成:
假设 sku_with_old 位于 C(旧数据位于 D),sku_with_new 位于 E(新闻位于 F)。这个表达式是一种获取 sku 的方法,sku 只存在于两者中......类似地,您可以在 H 和 K 列中获取旧内容和新闻。
如果您想这样做但又不能,请告诉我。
Well this could be done using ISBLANK(), OR(), and IF() functions:
Suppose sku_with_old is at C (and olds are at D), and sku_with_new is at E (and news are at F). This expression then is a way to get skus which are only in both... Similarly you can get olds and news in H and K columns.
Let me know if You'd like to make it this way - but can't.