Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I need help with a measure.
When I select a date in the date slicer, Measure should check the max date among all the previous dates & match the item_name, and give me the value of that row.
Example: I have selected 05-Sep-2023, then it will search for the max date till 31-Aug-2023, i.e. It will give the data in that max row.
in data, the max date that is available before September 2023 is 29-07-2023, so it should give the data present in the 29-07-2023 row. (Already tried with PREVIOUSMONTH function not working)
Below is the link to download the file
Testing123.pbix
DG_UAE_11_09 - Copy.xlsx
Regards,
Solved! Go to Solution.
Hi @vbharakhada
The file you provided cannot open.
The following solution is based on the sample data you have provided.
1.You can create a calendar table first
Table 2 = CALENDAR(DATE(2023,5,1),DATE(2023,10,1))
2.Then create a measure
Measure = var a=MAXX(FILTER(ALLSELECTED('Table'),[Date_of_actual]<MAX('Table 2'[Date])),[Date_of_actual])
return CALCULATE(SUM('Table'[Cumulative_Actual]),FILTER('Table',[Date_of_actual]=a))
3.Put the date of table2 to the slicer.
Note:there is no relationship between two tables.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @vbharakhada
The file you provided cannot open.
The following solution is based on the sample data you have provided.
1.You can create a calendar table first
Table 2 = CALENDAR(DATE(2023,5,1),DATE(2023,10,1))
2.Then create a measure
Measure = var a=MAXX(FILTER(ALLSELECTED('Table'),[Date_of_actual]<MAX('Table 2'[Date])),[Date_of_actual])
return CALCULATE(SUM('Table'[Cumulative_Actual]),FILTER('Table',[Date_of_actual]=a))
3.Put the date of table2 to the slicer.
Note:there is no relationship between two tables.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
84 | |
76 | |
74 | |
49 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |