Power BI Pages
Manage pages and bookmarks in Power BI reports through command-line operations. Add or delete pages with custom dimensions, control visibility, set backgrounds, and organize page order—all without opening Power BI Desktop. Bookmarks capture page-level state for quick navigation.
Power BI Pages lets you add, remove, and reorganize report pages using pbi-cli without needing Power BI Desktop.
AI-generated summary based on this skill's SKILL.md
Install
MinaSaad1/pbi-cli/power-bi-pages · repository language: Python
git clone https://github.com/MinaSaad1/pbi-cli
cp -r pbi-cli/src/pbi_cli/skills/power-bi-pages ~/.claude/skills/power-bi-pagesFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I add a new page to a Power BI report?
Power BI Pages lets you add new pages to your report programmatically via command-line operations. You can specify custom dimensions for each page you create, organizing them in your desired order without opening Power BI Desktop. This streamlines report structure management and enables batch page creation workflows.
Can I delete a page from a Power BI PBIR file?
Yes, Power BI Pages supports removing pages from PBIR reports through CLI commands. You can delete individual pages or batch-remove multiple pages, then reorganize the remaining page order as needed. All changes are applied directly to your report file without requiring Desktop.
What page layout and sizing options does Power BI Pages support?
Power BI Pages allows you to configure page layout with custom dimensions—including standard sizes like 1920x1080 and 16:9 aspect ratios. You can also manage page properties such as background color, visibility, and canvas sizing to match your design requirements and organizational standards.
How do I hide or show pages in Power BI navigation?
Power BI Pages enables you to control page visibility directly through command-line operations. You can hide or show pages in report navigation, manage page properties like background and layout, and organize page order—all without opening Power BI Desktop or using the UI.
How do Power BI bookmarks capture and restore page state?
Power BI Pages lets you create and manage bookmarks that capture page-level state for quick navigation. Bookmarks record the current page configuration, allowing you to restore specific page states and provide users with predefined navigation points across your report.
What is drillthrough page configuration in Power BI Pages?
Power BI Pages supports setting up drillthrough pages with parameter bindings, enabling users to navigate from one page to another while passing filtered context. You configure page binding and parameter mappings through CLI commands to create seamless cross-page navigation flows.
SKILL.md
rendered from the published skill — quoted content, verbatim
Power BI Pages Skill
Manage pages in PBIR reports. Pages are folders inside definition/pages/
containing a page.json file and a visuals/ directory. No Power BI Desktop
connection is needed.
Listing and Inspecting Pages
# List all pages with display names, order, and visibility
pbi report list-pages
# Get full details of a specific page
pbi report get-page page_abc123
get-page returns:
- name, display_name, ordinal (sort order)
- width, height (canvas size in pixels)
- display_option (e.g. "FitToPage")
-
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
src/pbi_cli/skills/power-bi-pages/SKILL.md