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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have problem situtaion where i need to show single row selected whenever report render firstime using table visual.
examle:
I have 5 records in a table and want 1 row selected by default to show that perticular visual details into bar chart visual.
Please help to tackel this sinario.
hi @Mohd_Naim
Now when you log out of Power BI and come back to a report, the same items will be selected as when you left. For those who're looking to have a 'last month' selection, the relative date slicer might help.
and you could also try another workaround as amitchandak's said.
Regards,
Lin
@Mohd_Naim , There is no way to get a row selected. Also, the default slicer is hard coded values. Or you have to create something like this a get value selected
example for the month in a slicer
Month Type = Switch( True(),
Date([Date]) = eomonth(Today(),-1),"Last Month" ,
Date([Date])= eomonth(Today(),0),"This Month" ,
format([date],"YYYY-MM")
)