具有多个值的Excel Pivot Table_same列和行项目

发布于 2025-01-20 07:29:42 字数 441 浏览 0 评论 0原文

我有一个像这样的表

”“在此处输入图像描述”

希望当产品在Excel Pivot表中具有多个值时,我可以获得最新值。像这样:

我很努力,但仍然无法实现这一目标... 有什么想法吗?谢谢。

I have a table like this

enter image description here

I hope I can get the latest value when a product has more than one value in a same measurement item by excel pivot table. Like this:
enter image description here

I tried so hard but still have no way to achieve this...
Any idea? Thanks.

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

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

发布评论

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

评论(1

前事休说 2025-01-27 07:29:42

您需要将源数据添加到数据模型(通过Power Pivot Ribbon),然后您可以创建以下措施:

strigh> strigh>

VAR LatestDate =
    MAXX( 'Table', IF( 'Table'[measure item] = "weight", 'Table'[time] ) )
RETURN
    MAXX(
        'Table',
        IF(
            'Table'[measure item] = "weight",
            IF( 'Table'[time] = LatestDate, 'Table'[value] )
        )
    )

高度

VAR LatestDate =
    MAXX( 'Table', IF( 'Table'[measure item] = "height", 'Table'[time] ) )
RETURN
    MAXX(
        'Table',
        IF(
            'Table'[measure item] = "height",
            IF( 'Table'[time] = LatestDate, 'Table'[value] )
        )
    )

创建一个枢轴表在值字段中的这两个度量与行场中的产品名称一起使用。

You'll need to add your source data to the Data Model (via the Power Pivot ribbon), after which you can create the following measures:

Weight

VAR LatestDate =
    MAXX( 'Table', IF( 'Table'[measure item] = "weight", 'Table'[time] ) )
RETURN
    MAXX(
        'Table',
        IF(
            'Table'[measure item] = "weight",
            IF( 'Table'[time] = LatestDate, 'Table'[value] )
        )
    )

Height

VAR LatestDate =
    MAXX( 'Table', IF( 'Table'[measure item] = "height", 'Table'[time] ) )
RETURN
    MAXX(
        'Table',
        IF(
            'Table'[measure item] = "height",
            IF( 'Table'[time] = LatestDate, 'Table'[value] )
        )
    )

Create a Pivot Table with these two measures in the Values field together with product name in the Rows field.

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