Hello,
I'd really appreciate you can help me. I have a table like this one:
Basically, it's showing the number of cases by day and country. The list has many rows. I need to add a column that shows the difference between the number of cases of that day and the number of cases 14 days before. I'm not familiar with DAX, and I know neither how to refer to the specific value of a cell in a column nor how to specify the number of rows behind to look for the difference's value.
I really appreciate any help you can provide.
Best
Pedro
Solved! Go to Solution.
Hi,
You can use LookupValue function:
Country_Date - 14 days =
LOOKUPVALUE (
Covid[New_Cases],
Covid[Country], Covid[Country],
Covid[Date], DATEADD ( Covid[Date], -14, DAY )
)
This is result:
Firstly it searches for same country and then for date and date - 14 days.
Regards,
Nemanja Andic
Thank you Nandic, your code helped me to create a column with the number of cases as of 14 days before; I just created another column with the subtraction to get the difference in the number of cases.
Thanks a lot,
Pedro
Hi,
You can use LookupValue function:
Country_Date - 14 days =
LOOKUPVALUE (
Covid[New_Cases],
Covid[Country], Covid[Country],
Covid[Date], DATEADD ( Covid[Date], -14, DAY )
)
This is result:
Firstly it searches for same country and then for date and date - 14 days.
Regards,
Nemanja Andic
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
97 | |
76 | |
42 | |
30 | |
30 |
User | Count |
---|---|
136 | |
95 | |
78 | |
47 | |
39 |