Dashboard Mode - Applied steps and undo
Dashboard Goal
Understand how Power BI's Applied Steps and Undo features help track and reverse data transformation changes during data preparation.
Understand how Power BI's Applied Steps and Undo features help track and reverse data transformation changes during data preparation.
| OrderID | Product | Quantity | Price | OrderDate |
|---|---|---|---|---|
| 1001 | Notebook | 2 | 5 | 2024-01-10 |
| 1002 | Pen | 5 | 1 | 2024-01-11 |
| 1003 | Notebook | 3 | 5 | 2024-01-12 |
| 1004 | Marker | 4 | 2 | 2024-01-13 |
| 1005 | Pen | 6 | 1 | 2024-01-14 |
= Table.SelectRows(Source, each [Quantity] >= 3).+----------------------+--------------------+ | Applied Steps Pane | Data Preview Table | | (List of steps) | (Filtered data) | +----------------------+--------------------+ | Formula Bar (M code) | +------------------------------------------+ | Undo Button | +------------------------------------------+
Clicking on an applied step updates the Data Preview Table to show data at that step. The Formula Bar updates to show the M code for that step. Clicking Undo removes the last step and updates both the Applied Steps Pane and Data Preview Table accordingly.
If you undo the last step (filter Quantity >= 3), which orders appear in the Data Preview Table?