The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi Team,
Kindly help on below scenerio
Basis on the date selection in slicer ,we need to show contents in the matrix that are fall within that range and along with latest among those entries ,if we have multiple rows.
Selected date in the slicer 31-May-23
In the table, we have following rows
ID - Modified date - Price
A - 15-May-23 - 10
B- 10-May-23 - 20
C-01-Jun-23 - 30
Rows falls under 31-May-23 are
A - 15-May-23 - 10
B- 10-May-23 - 20
Among this , latest date price needed, i.e
Final result should be
A - 15-May-23 - 10
How can we achieve this ?
Pls help
Solved! Go to Solution.
Hi, @Krishnanidar
You can try the following methods.
Measure =
Var _maxdate=CALCULATE(MAX('Table'[Modified date]),FILTER(ALL('Table'),[Modified date]>=MIN('Date'[Date])&&[Modified date]<=MAX('Date'[Date])))
Return
IF(SELECTEDVALUE('Table'[Modified date])=_maxdate,1,0)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Krishnanidar
You can try the following methods.
Measure =
Var _maxdate=CALCULATE(MAX('Table'[Modified date]),FILTER(ALL('Table'),[Modified date]>=MIN('Date'[Date])&&[Modified date]<=MAX('Date'[Date])))
Return
IF(SELECTEDVALUE('Table'[Modified date])=_maxdate,1,0)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
60 | |
55 | |
53 | |
49 | |
30 |
User | Count |
---|---|
179 | |
87 | |
70 | |
48 | |
45 |