Back to Native libraryWorking example
Designer ↔ BI developer handoff
Responsive behaviour
Native + report designThe same table reconsidered for desktop, tablet and mobile composition.
7 columns, compact rows
| Employee | Department | Team | Date | Status | Hours | Performance |
|---|---|---|---|---|---|---|
| Anna Visser | Operations | Logistics | 2026-03-02 | Approved | 29.8 h | 95% |
| Bram Vos | Operations | Logistics | 2026-02-07 | Approved | 30.0 h | 81% |
| Carla Jansen | Operations | Logistics | 2026-02-08 | Approved | 35.8 h | 78% |
| Daan Mulder | Operations | Planning | 2026-02-24 | Approved | 37.3 h | 93% |
| Eva Dekker | Operations | Planning | 2026-03-18 | Approved | 37.0 h | 82% |
| Femke Smit | Operations | Planning | 2026-03-08 | Approved | 36.6 h | 94% |
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.
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