Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Get previous iteration from dev ops

So i am building a stacked chart the will result in showing bugs from a previous iteration and issues from a current iteration on the same chart.  I have calculated everything i believe i need to show bugs and issues for the current iteration fine, i just need a way to calculate bugs from the previous iteration.  i thought about creating an index on the iterations and then somehow calculating bugs from the previous iteration that equals index -1?  Im coming from a sql background that is where my mind is taking me.   

for example 

_01_01 has 13 bugs

_02_01 has 7 bugs

_03_01 has 22 bugs

 

when i filter by the iteration date on the chart for _03_01 i want to show 7 bugs.  

but i am also showing _3_01 issues that are not the previous iteration.  

hope this makes sense.

10 REPLIES 10
Anonymous
Not applicable

I guess i need to putmore info out on what im looking for.  I have attached a screenshot of what i want the final result to be and what i am using to calculate the bugs.  I am just missing what i need to add to get the bug calculation for the previous iteration date.  and these dates are not consecultive daily.  they are created dates.  for example 3/4/2023 would have a previous date of 2/20/2023bugs.pngfinalesc.png

parry2k
Super User
Super User

@Anonymous Check this video on my YT channel which I did a year ago, and that will get you going. Comparing sales with previous day sales should be easy - Power BI - YouTube

 

👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤️



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

parry2k
Super User
Super User

@Anonymous you need to add a date table in your model, mark it as a date table, set a relationship with your bug/issue table on the date column and then add following measure:

 

Count = CALCULATE ( COUNTROWS ( BugIssueTable ), DATEADD ( 'Date Table'[Date], -1, DAY ) ) 

 

To visualize, use the date column from date table, item type from bug/issue table and the count measure , and this will do it

 

👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤️



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

After tinkering around, i dont think this will work for what im looking for.  the dates are not days apart, the dates are based off of project length so they could be 01/14/2023, next date could be 3/3/2023 and so on.  

in my attached screenshot, i have been trying with no avail to use a date table and index it, joining it to my main table.  the date table looks like my screenshot.  i thought somehow i might be able to get the bugs for 4/25/2023 to show up on 03/03/2023 with something like 'where index = index -1"
preiterindex_ex.png

Anonymous
Not applicable

ah yeah that seems simple enough.  i appreciate it!

Anonymous
Not applicable

 

Sure, here is an example ive mocked up.  Basically i want to show previous iteration date bugs on current iteration.

 

preiter_ex.png

Hi,

Please find attached the PBI file.

Hope this helps.

Ashish_Mathur_0-1691719006505.png

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

appreciate you looking at this.  this would work if the dates were days apart but unfortunantly the dates are spread out over the year.  thats why i was thinking more along the lines of using a date table and adding an index.  im just having trouble figuring out how to show where the index would equal -1 basically to show the previous date.

That is incorrect.  Study my solution again.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
parry2k
Super User
Super User

@Anonymous It will be easier if you share some data. Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors