Power BI getting 2 week back same day value

2019-09-10 19:06发布

问题:

I need to create a measure in Power BI which will always provide the value of sales amount 2 weeks back for the same weekday.

e.g Today = Tuesday 27-Sep-2016 so I need value for Tuesday 13-Sep-2016

The Table is simple with following structure

 Date       |  SalesAmount
-----------------------------
01-Sep-2016 | 500
02-Sep-2016 | 450
03-Sep-2016 | 650

回答1:

You can use DATEADD() function to compute the 14 days before each date. Create a measure using the below code.

SalesTwoWeeksAgo =
CALCULATE (
    SUM ( 'Table'[SalesAmount] ),
    FILTER (
        ALL ( 'Table' ),
        COUNTROWS (
            FILTER (
                'Table',
                EARLIER ( 'Table'[Date] ) = DATEADD ( 'Table'[Date], -14, DAY )
            )
        )
    )
)

While the previous DAX expression works, I'd create a calculated column which is better than the measure approach regarding to performance.

Let me know if this helps.



标签: powerbi dax