Skip to content
Back to Native library

Responsive behaviour

Native + report design

The same table reconsidered for desktop, tablet and mobile composition.

Working example
7 columns, compact rows
EmployeeDepartmentTeamDateStatusHoursPerformance
Anna VisserOperationsLogistics2026-03-02Approved29.8 h95%
Bram VosOperationsLogistics2026-02-07Approved30.0 h81%
Carla JansenOperationsLogistics2026-02-08Approved35.8 h78%
Daan MulderOperationsPlanning2026-02-24Approved37.3 h93%
Eva DekkerOperationsPlanning2026-03-18Approved37.0 h82%
Femke SmitOperationsPlanning2026-03-08Approved36.6 h94%
Power BI limitation
Responsive Power BI reporting has platform-specific limitations. Design the report composition deliberately rather than assuming desktop layouts will simply scale down: Power BI has a fixed canvas plus a separately composed mobile layout, and standard tables do not transform into ideal responsive web tables.
What it is

Power BI has a fixed desktop canvas plus a separate mobile layout that you compose manually.

When to use it

Whenever a report is consumed on tablet or phone.

Native Power BI capability

Partly. There is a mobile layout view and a responsive toggle on some visuals — there is no fluid web-style reflow.

UX considerations
  • Prioritise columns per breakpoint; decide what disappears, not what shrinks.
  • Increase row readability on small screens instead of keeping density.
  • Consider a different composition on mobile (cards instead of a wide table).
BI developer considerations
  • Build the phone layout explicitly in Mobile layout view.
  • Hidden visuals in the mobile layout still run their queries.
QA considerations
  • Mobile layout is validated on a real device.
  • No essential column is lost without an alternative path to it.
Limitations
  • Tables do not automatically transform into ideal responsive web tables.
  • There is no tablet-specific layout view; tablets get the desktop canvas scaled.
HTML prototype note

This interactive HTML example simulates the native Power BI behaviour. It is not Power BI itself and should not be interpreted as an implementation of the Power BI rendering engine.

Designer ↔ BI developer handoff
UX designer defines
  • Information hierarchy and column order
  • Required fields and measures
  • Default state (sort, filters, selection)
  • Interaction intent and what it should affect
  • Responsive priority and what may be dropped
  • Accessibility expectations and focus order
  • Empty, loading and error states
BI developer implements
  • Dataset fields, measures and relationships
  • Visual configuration in the format pane
  • Filters, sort order and interaction wiring
  • Drill-through / drill-down configuration
  • Conditional formatting rules
  • Row-level security and permissions
  • Query performance optimisation
QA validates
  • Data correctness against the source
  • Correct default state on first load
  • Sorting and filtering behaviour
  • Drill and selection behaviour
  • Permissions and row-level security
  • Empty states and responsive layout
  • Performance and export behaviour