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
Pls could you guide me in getting the Running Sum of Enrollment on the Y axis.
I want the output of the graph to in an exponential form. I have a column as Enrol_Count.
Pls do share the simplest solution and the method.
How to keep all the data points if my data is in discrete form
Hi @arjuns0028 ,
Did it solve your problem?
Did my message help you in any way? If it did, please mark my message as the solution and give it a "kudo", I'll appreciate it and help me out
Proud to be a Super User!
Hi @arjuns0028,
Take a look at this simple example:
I have this table:
I add this DAX measure:
RumSum Measure =
VAR _Table =
FILTER(
ALL(T_RunSum),
T_RunSum[Date] <= SELECTEDVALUE( T_RunSum[Date])
)
VAR _Result =
SUMX(
_Table,
T_RunSum[Qty]
)
RETURN
_Result
And the final result is this:
I hope this help you with your problem.
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
105 | |
99 | |
64 | |
54 |