Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi All,
I would like to get the value that preceedes based on the earlier date. The value needs to also match the group number.
My table looks like that:
+------------+-------+-------+----------------+ | date | group | value | previous value | +------------+-------+-------+----------------+ | 2019-02-02 | 2 | 50 | 45 | | 2019-02-02 | 1 | 60 | 80 | | 2019-01-18 | 2 | 45 | | | 2019-01-18 | 1 | 80 | |
After looking different ressources online that ressemble my question I came up with the following query which gives me a blank column.:
RateChange = CALCULATE( VALUES(table[Rate]), FILTER( ALL(table), table[date] = EARLIER(table[date])-1 && table[group] = EARLIER(table[group]) ) )
I need help in getting the query to work as calculated column and measure.
Thank you !
Solved! Go to Solution.
Hello,
You can try the following modification marked with blue:
RateChange = CALCULATE( VALUES(table[Rate]), FILTER( ALL(table), table[date] < EARLIER(table[date]) && table[group] = EARLIER(table[group]) ) )
Regards,
ElenaN
You may refer to the post below.
You may refer to the post below.
Hello,
You can try the following modification marked with blue:
RateChange = CALCULATE( VALUES(table[Rate]), FILTER( ALL(table), table[date] < EARLIER(table[date]) && table[group] = EARLIER(table[group]) ) )
Regards,
ElenaN
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
61 | |
46 | |
45 |