在 Calc 中合并数据

发布于 2024-11-28 08:59:03 字数 234 浏览 1 评论 0原文

我有 1 个包含两列的电子表格:skuold_url,另一个包含 skunew_url

我想用 skuold_urlnew_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疧_╮線 2024-12-05 08:59:03

这可以使用 ISBLANK()、OR() 和 IF() 函数来完成:

=IF(OR(ISBLANK(C11),ISBLANK(E11)),0,J11)

假设 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:

=IF(OR(ISBLANK(C11),ISBLANK(E11)),0,J11)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文