This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 28 | |
| 23 | |
| 23 |