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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 52 | |
| 41 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 124 | |
| 108 | |
| 47 | |
| 28 | |
| 27 |