power-bi-report-designlisted
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