Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hello,
Here is my fact table:
Dimension | Value | Execution Period |
Execution | 266,846,836 | |
Execution | 286,169,980 | |
Execution | 324,761,947 | |
Execution | 81,715,856 | 01/12/2021 |
Execution | 74,927,028 | 01/11/2021 |
Execution | 85,850,086 | 01/10/2021 |
Execution | 89,286,662 | 01/09/2021 |
Execution | 61,884,045 | 01/08/2021 |
Execution | 32,137,270 | 01/07/2021 |
Closing | 610,931,927 | 01/06/2021 |
Here is the DAX for my calendar:
@Anonymous , Hope you are creating a measure , and Backlog Execution is a measure too
try
a new measure
Burndown =
VAR _period = max('Calendar'[Date])
VAR _burndownBacklog = calculate([Backlog Execution],
filter(
all('Calendar'),
'Calendar'[Date]<=_period))
RETURN
_burndownBacklog
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.