Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi,
A bit lost on how best get data from specific rows so looking for any advice, thanks.
Having a table like below.
I would like to get specific filtered rows and display its info into cards.
So 1st card shows data where Category = IT and current date between Start and end date.
Let me know if I havent explained myself well.
Solved! Go to Solution.
Hi @JSR ,
For TITLE column, set summarisation to FIRST as highlighted below:
For END DATE, set summarisation to LATEST as shiwn below:
This will give you your desired result as follows:
Thanks,
Pragati
Hi @JSR ,
You can do it easily by having a filter on CATEGORY and a Multicard to display relevant information.
Now whenever you change values in the slicer, the values in the card visual gets updated:
Let me know if this what you are looking for.
Thanks,
Pragati
Thanks @Pragati11 for your super detailed answer.
But I need to do the filtering automatic, and only display the latest based on Category and dates.
Hi @JSR ,
For TITLE column, set summarisation to FIRST as highlighted below:
For END DATE, set summarisation to LATEST as shiwn below:
This will give you your desired result as follows:
Thanks,
Pragati
@JSR , Try a measure like
measure =
var _date = today() //selectedvalue(date[date])
return
calculate(counrows(Table), filter(Table, table[start date]<=_date && Table[end date]>= _date))
Thanks @amitchandak
but I dont think a measure will work, I need to display diferrent coulumns of the row.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |