← ClaudeAtlas

power-bi-report-designlisted

Use for report page management, visual authoring, bookmarks, drillthrough, auto-layout, tooltip pages, conditional formatting, filter pane configuration, design critique, chart archetype selection, anti-pattern detection, and WCAG accessibility audits. Triggers on: "add a visual", "create a page", "bookmark", "drillthrough", "tooltip page", "conditional formatting", "color scale", "data bar", "report layout", "pbi report", "pbi visual", "pbi page", "pbi layout", "pbi filter", "auto-layout", "page navigator", "mobile layout", "PBIR", "design review", "chart choice", "which visual should I use", "accessibility", "WCAG", "anti-pattern", "report critique", "review this report". Do NOT trigger for DAX measures (→ power-bi-dax), theme/brand colors (→ power-bi-design-system), or model schema (→ power-bi-modeling).
mudassir09/pbi-enterprise-cli · ★ 0 · Data & Documents · score 75
Install: claude install-skill mudassir09/pbi-enterprise-cli
# power-bi-report-design Report pages, visuals, bookmarks, drillthrough, auto-layout, and filter configuration. ## Quick Reference ```bash # Page management (page-add takes --name only; no page type flag, no rename command) pbi report pages --pbip <path> pbi report page-add --pbip <path> --name "Executive Summary" pbi report page-add --pbip <path> --name "Detail Tooltip" pbi report page-delete --pbip <path> --name "Draft" pbi report page-duplicate --pbip <path> --name "Overview" # Visual management (32 visual types supported — all --pbip <path>) pbi visual list --pbip <path> --page "Overview" pbi visual list --pbip <path> --page "Overview" --json # Chart: --table + --value (numeric) + --category (grouping); positions are integers pbi visual add --pbip <path> --page "Overview" --type bar \ --table Sales --value "Total Revenue" --measure --category MonthName \ --x 40 --y 120 --width 600 --height 400 pbi visual add --pbip <path> --page "Overview" --type card --table Sales --value "Total Revenue" --measure pbi visual add --pbip <path> --page "Overview" --type slicer --table Product --value Category pbi visual delete --pbip <path> --page "Overview" --name "Old Chart" pbi visual update --pbip <path> --page "Overview" --name "Revenue Chart" --title "Monthly Revenue" # Conditional formatting (--type color-scale|data-bar|rules|icons) pbi visual format --pbip <path> --page "Overview" --visual "Revenue Table" \ --type color-scale --table Sales --measure Revenue pbi visual for