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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Dashboard for tracking application count changes based on Code releases

Hi Guys,

 

I was recently asked a question if I can create a dashboard where I can show the multiple code releases that happen through the year (mostly once a month) as vertical lines and count of applications received as a line chart.snap.png

 

So, basically identifying if there was an impact on app counts due to a (major/minor)code release. I hvae the dates when the releases happned and will happen in future. 

 

How can I implement such a chart in Power Bi? Any help is really appreciated.

 

Thanks in advance. 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous ,

 

Suppose source tables are similar to below.

2.png3.PNG

 

New a calendar table first.

Date = CALENDAR(MIN('Fact data'[Date]),MAX('Fact data'[Date]))

Establish relationship between 'Date' table and source tables.

4.PNG

 

Create measures.

Sum amount = SUM('Fact data'[Amount])
Reference line =
IF (
    SELECTEDVALUE ( 'Release dates'[version] ) <> BLANK (),
    MAXX ( ALLSELECTED ( 'Date'[Date] ), [Sum amount] ),
    0
)

Insert a line and stacked column chart. Place 'Date'[Date] onto X-axis, place above measures into corresponding sections, and place 'Release dates'[version] into tooltip. Remember to set the type of axis to "Continuous".

1.png

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous ,

 

Suppose source tables are similar to below.

2.png3.PNG

 

New a calendar table first.

Date = CALENDAR(MIN('Fact data'[Date]),MAX('Fact data'[Date]))

Establish relationship between 'Date' table and source tables.

4.PNG

 

Create measures.

Sum amount = SUM('Fact data'[Amount])
Reference line =
IF (
    SELECTEDVALUE ( 'Release dates'[version] ) <> BLANK (),
    MAXX ( ALLSELECTED ( 'Date'[Date] ), [Sum amount] ),
    0
)

Insert a line and stacked column chart. Place 'Date'[Date] onto X-axis, place above measures into corresponding sections, and place 'Release dates'[version] into tooltip. Remember to set the type of axis to "Continuous".

1.png

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-yulgu-msft  This is great. Thank you so much!

What if I wanted to add more KPIs ( Apps,Approvals,Fundings etc). Just dragging and dropping into the 'Line Values' section would work fine automatically ?

Yes, and you could even change the color/formatting of those other KPIs.

Anonymous
Not applicable

Yup.. It did work. Smiley Happy

Thank you for the quick responses. 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors