Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I have a report wherein I want to post the last purchase on a website.
So I have inserted a card and a filter on the most recent one.
It works for the date.
but now I want to display the maximum time of day I picked in the maximum date card
i specify that my hours and dates are in separated columns
how can i filter the adjacent hour of the max date ?
I hope I am clear enough 🙂
thanks !
Solved! Go to Solution.
@GeekAlfPro , Try a new measure
new measure =
var _date =maxx(allselected(Table), Table[Date])
return
calculate(max(Table[Time]), filter(Table, Table[Date] =_date))
Or create a new column
datetime = [Date]+time
then use measure = maxx(allselected(Table), Table[Datetime])
@GeekAlfPro , Try a new measure
new measure =
var _date =maxx(allselected(Table), Table[Date])
return
calculate(max(Table[Time]), filter(Table, Table[Date] =_date))
Or create a new column
datetime = [Date]+time
then use measure = maxx(allselected(Table), Table[Datetime])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!