有没有办法通过在 tableau 或 Excel 中刷新订单 ID 来计算产品相关性?

发布于 2025-01-15 01:55:20 字数 338 浏览 2 评论 0原文

我在清理数据时遇到问题。提供1年销售数据 —>销售数据仅提供销售数量。

  • 订单ID每天刷新。从 1 开始,
  • 有些订单可能只购买一件商品,但有些订单会购买不止一件商品

销售数据示例

该示例显示了 2020 年 1 月 2 日售出的商品数量,共有 168 件当天的订单。 2020 年 1 月 3 日开始,订单 ID 刷新回 1。

I have issues with cleaning my data. 1 year of sales data provided —> sales data only provided quantity sold.

  • order id refreshes every day. Starts from 1
  • some orders may purchase just one item, but some have more than one item

Example of sales data

The example illustrates the number of items sold on 2nd Jan 2020 and there are a total of 168 orders for that day. When 3 Jan 2020 starts, the order id is refreshed back to 1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

千と千尋 2025-01-22 01:55:20

如果您想要一个唯一的订单 ID,那么将日期和订单 ID 组合起来即可为您完成,只需将其放入新列中...

=TEXT(D2,"yyyyMMdd") & TEXT(B2,"00000")

Formula

这样,您将保留原始数据,但要过滤的唯一订单 ID if需要。

If you want a unique order ID then something like combining the date and order ID will do it for you, it just needs to be placed into a new column ...

=TEXT(D2,"yyyyMMdd") & TEXT(B2,"00000")

Formula

This will, you retain your original data but have the unique order ID to filter on if need be.

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