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.
Hi All,
I want to make accumulative line graph of which line should always increase.
- Even though there is missing month for each item, the month should exist with previous value.
so the graph must not decrease or cut for the missing month.
Let say I have two tables like below, the 'Date' table and 'ShipQty' table has relation in date column.
X axis: Date, Y axis: Qty
Please kindly help me.
Thanks in advance.
Solved! Go to Solution.
Hi, @DanielLinda
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
ShipQty:
Date:
Date = CALENDAR(DATE(2001,1,1),DATE(2022,12,31))
There is a relationship between two tables.
You may create calculated columns and a measure as below.
Calculated column:
YearMonth = VALUE(FORMAT('Date'[Date],"yyyymm"))
YearMonthDay = FORMAT('Date'[Date],"yyyy-mm-"&"01")
YearMonth2 = VALUE(FORMAT(ShipQty[Date],"yyyymm"))
Measure:
Result =
CALCULATE(
SUM(ShipQty[Qty]),
FILTER(
ALL(ShipQty),
ShipQty[Item] = SELECTEDVALUE(ShipQty[Item])&&
ShipQty[YearMonth2]<=SELECTEDVALUE('Date'[YearMonth])
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @DanielLinda
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
ShipQty:
Date:
Date = CALENDAR(DATE(2001,1,1),DATE(2022,12,31))
There is a relationship between two tables.
You may create calculated columns and a measure as below.
Calculated column:
YearMonth = VALUE(FORMAT('Date'[Date],"yyyymm"))
YearMonthDay = FORMAT('Date'[Date],"yyyy-mm-"&"01")
YearMonth2 = VALUE(FORMAT(ShipQty[Date],"yyyymm"))
Measure:
Result =
CALCULATE(
SUM(ShipQty[Qty]),
FILTER(
ALL(ShipQty),
ShipQty[Item] = SELECTEDVALUE(ShipQty[Item])&&
ShipQty[YearMonth2]<=SELECTEDVALUE('Date'[YearMonth])
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Right, so normally the way you tackle this is to have a separate, (sometimes unrelated) calendar table with all the dates. You use the date column from this in your visualization and code your measure like this:
Cumulative Measure =
VAR __Date = MAX('Calendar'[Date])
RETURN
SUMX(FILTER('Table','Table'[Date] <= __Date),[Column])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |