Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am plotting a cummulative graph from Budgted table to calendar date table using quick measure;
Budgted direct cost is in one table and Calendar is other table.
Solved! Go to Solution.
Hi @Anonymous ,
You could use calculated column to get zero result.
Cumulative =
IF('Table'[Date]>MIN('Table'[Date]),
CALCULATE(
SUM('Table'[Value]),
FILTER('Table','Table'[Date]<=EARLIER('Table'[Date]))
)+0,0)
Here is the result. The value of first date is 0 but not the correct value.
Hi @Anonymous ,
You could use calculated column to get zero result.
Cumulative =
IF('Table'[Date]>MIN('Table'[Date]),
CALCULATE(
SUM('Table'[Value]),
FILTER('Table','Table'[Date]<=EARLIER('Table'[Date]))
)+0,0)
Here is the result. The value of first date is 0 but not the correct value.
Hi @Anonymous ,
Add Zero to your measure and the X-axis should be from dimension table. Find the below measure and screenshot FYR.
Measure:
I cant use the Dim table for X axis as I have to make graphs from diffretent tables. But looks like I have to put zero in my data
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
65 | |
45 | |
39 | |
31 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |