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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a list of Power BI issues which we encountered during the project execution whether below are the actual limitations in Power BI or there is work around available -
In case, if the user selects any date in the Start Date/Time slicer, dynamically the “Hours:Minutes” in the Start Date/Time slicer should change to “00:00” and also the date in End Date/Time slicer should get updated with the Start Date/Time slicer’s date value with the “Hours:Minutes” as “23:59”.
4. The option of aligning the values vertically in the matrix visual to accommodate more values in the screen.
5. Customizing the matrix visual by removing scroll bar and using arrows for scrolling left-right.
6. The option of disabling table visuals during initial page load and enabling based on the value selection in the matrix visual on the same page.
Please let me know if you need any further information.
Thanks ,
Gopinath Sunduru.
Solved! Go to Solution.
HI @Anonymous ,
#1, You can set up dynamic date filter on query editor side or add a calculate fields to compare row content and current date.
M query formula:
#"Filtered Rows" = Table.SelectRows(#"previous steps", each [Date] >= Date.AddDays(Date.From(DateTime.LocalNow()),-1) and [Date] <= Date.From(DateTime.LocalNow()))
Power BI Tutorial: Dynamically Filter By Today’s Date
#2, Current power bi slicer not support to analysis time value, if you want to filter by datetime, I'd like to suggest you to setup date time filter on filter fields with advanced mode.
#3, Nope, you can't use slicer to dynamic modify other slicers selection.
#4, Maybe you can try to use 'show as row' option to display more records:
#5,6. Power bi not support to custom on these part.
Regards,
Xiaoxin Sheng
HI @Anonymous ,
#1, You can set up dynamic date filter on query editor side or add a calculate fields to compare row content and current date.
M query formula:
#"Filtered Rows" = Table.SelectRows(#"previous steps", each [Date] >= Date.AddDays(Date.From(DateTime.LocalNow()),-1) and [Date] <= Date.From(DateTime.LocalNow()))
Power BI Tutorial: Dynamically Filter By Today’s Date
#2, Current power bi slicer not support to analysis time value, if you want to filter by datetime, I'd like to suggest you to setup date time filter on filter fields with advanced mode.
#3, Nope, you can't use slicer to dynamic modify other slicers selection.
#4, Maybe you can try to use 'show as row' option to display more records:
#5,6. Power bi not support to custom on these part.
Regards,
Xiaoxin Sheng