March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I'd like to create an area chart with weeks on the X Axis and Value on the Y Axis.
The Value needs to be cumulative, for example
MOQ Value | MOQ Weeks |
100 | 6 |
200 | 7 |
400 | 10 |
200 | 16 |
100 | 52 |
Week 1 on the chart should show the total of MOQ Weeks > 1
Week 2 on the chart > 2
etc
I'm at a loss on how to do this and after reading numerous posts have given up.
I'd greatly appreciate if someone could help.
Thanks.
Solved! Go to Solution.
You may refer to the measure below.
Measure = VAR w = SELECTEDVALUE ( Table1[MOQ Weeks] ) RETURN SUMX ( FILTER ( ALL ( Table1 ), Table1[MOQ Weeks] > w ), Table1[MOQ Value] )
You may refer to the measure below.
Measure = VAR w = SELECTEDVALUE ( Table1[MOQ Weeks] ) RETURN SUMX ( FILTER ( ALL ( Table1 ), Table1[MOQ Weeks] > w ), Table1[MOQ Value] )
Many thanks for the reply.
The measure works great apart from where the MOQ Weeks has zero count.
For example no part numbers have an MOQ weeks of 47. So instead of still summing MOQ Value for MOQ Weeks > 47 the measure would sum MOQ Value for MOQ Weeks > 0. This causes big spikes in the Area Chart.
Is there a way to Auto Filter these out? Or to amend the measure?
Thanks in advance.
You may simply add an IF Function.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
90 | |
85 | |
73 | |
49 |
User | Count |
---|---|
167 | |
147 | |
92 | |
70 | |
58 |