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
dogt1225
Helper III
Helper III

Open Requests

I'm looking to create a bar chart in Powerbi that has the average weekend age of open applications. Any help is highly appreciated.
I'm using the date difference to find the age of the requests and execute cumaltive sums.

 

 

Avg Age = [Cumulative Sum of Age] / [Total Open Requests]
Cumulative Sum of Age = CALCULATE(
        SUMX(DataTable, DATEDIFF(DataTable[Submitted_Date], TODAY(), DAY)), 
        FILTER(ALL('Calendar'), 'Calendar'[Date] <= MAX('Calendar'[Date]))
)
Total Open Requests = CALCULATE(
                            COUNT(DataTable[Submitted_Date]),
                            FILTER(ALL('Calendar'), 'Calendar'[Date] <= MAX('Calendar'[Date]))
)

2 REPLIES 2
amitchandak
Super User
Super User

@dogt1225 , Refer if this blog on similar topic can help

 

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

Video -https://youtu.be/e6Y-l_JtCq4

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Greg_Deckler
Community Champion
Community Champion

@dogt1225 Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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