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 have attached the image of problem I am trying to solve, trying to draw this chart on powerBI...
Planned calculation is 295/4= 73.75 (Blue line in the graph) Let say I am taking 295 from table X than dividing by 4, for the 4 weeks.. Thanks
PI6 Start = 295
sprint 34= 295 - 73= 221
sprint 35= 221-73= 147
sprint 36= 147-73 = 73
sprint 37= 73-73= 0
Solved! Go to Solution.
Hi @DavidGM ,
According to your description, I create a sample.
In my understanding, you want to create a new column Planned and show it on the line chart, if this is the case, here's my solution.
1.In Power Query, add an index column starts from 0.
2.Create a calculated column.
Planned =
VAR _P = 295 - [Index] * 295 / 4
RETURN
IF ( _P < 0, 0, _P )
3.Sort the Week column by Index.
Get the expected result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DavidGM ,
According to your description, I create a sample.
In my understanding, you want to create a new column Planned and show it on the line chart, if this is the case, here's my solution.
1.In Power Query, add an index column starts from 0.
2.Create a calculated column.
Planned =
VAR _P = 295 - [Index] * 295 / 4
RETURN
IF ( _P < 0, 0, _P )
3.Sort the Week column by Index.
Get the expected result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please provide sanitized sample data that fully covers your issue. If you paste the data into a table in your post or use one of the file services it will be easier to work with. Avoid posting screenshots of your source data if possible.
Please show the expected outcome based on the sample data you provided. Screenshots of the expected outcome are ok.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
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 |
---|---|
133 | |
76 | |
53 | |
38 | |
37 |
User | Count |
---|---|
202 | |
80 | |
71 | |
55 | |
48 |