Drop in your own sales export and the whole dashboard fills itself: revenue, margin, target attainment and month-over-month movement.
DAX: SUM('Sales'[Revenue])
Uses: 'Sales'[Revenue]
Format: \$#,0.00
DAX: SUM('Sales'[Cost])
Uses: 'Sales'[Cost]
Format: \$#,0.00
DAX: SUM('Sales'[Revenue]) - SUM('Sales'[Cost])
Uses: 'Sales'[Revenue], 'Sales'[Cost]
Format: \$#,0.00
DAX: DIVIDE(SUM('Sales'[Revenue]) - SUM('Sales'[Cost]), SUM('Sales'[Revenue]))
Uses: 'Sales'[Revenue], 'Sales'[Cost]
Format: 0.0%
DAX: SUM('Sales'[Units])
Uses: 'Sales'[Units]
Format: #,0
DAX: SUM('Targets'[Revenue Target])
Uses: 'Targets'[Revenue Target]
Format: \$#,0.00
| Column | Type | Summarize by |
|---|---|---|
Date | dateTime | |
Region | string | |
Product | string | |
Units | int64 | sum |
Revenue | decimal | sum |
Cost | decimal | sum |
Header row: Date,Region,Product,Units,Revenue,Cost
| Column | Type | Summarize by |
|---|---|---|
Month | dateTime | |
Region | string | |
Revenue Target | decimal | sum |
Header row: Month,Region,Revenue Target