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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
MayurGaikwad
New Member

Week wise analysis of requests

Hi,

 

how can I build week wise analysis of requests

for eg I have a table (from Jira) which has records of requests to be developed. During catering such requests it flows through various teams like business, Dev team, testing team etc. There is. Separate column we maintain to call out such dependency like if request is with business user, value in table is Business, if with Dev team, value is Dev etc. I want to build a week on week analysis as how many requests are in which buckets every week.

1 REPLY 1
kpost
Super User
Super User

Without more info (You'd be surprised how many ways people on this forum choose to define what a "week" is).   I can just throw generic advice at you.  Add a "Week" column to your Date table.

 

1) You can do it via Week Ending (Saturday) date :

Week Ending = FLOOR(Date_Table[Date].[Date]-1, 7) + 7
 
Or:
2) Week number where January 1 - 7 are Week 1:

Week Number = 
var Julian_Date = DATEDIFF(DATE(YEAR('Date_Table'[Date]),1,1), 'Date_Table'[Date],DAY)+1
var week_number = CEILING(DIVIDE(Julian_Date, 7, 0), 1)
return
IF(week_number = 53, 52, week_number)

.....


This will give you a couple of different ways to view data on a weekly view.  Unless you can provide more info and then I can provide more info.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Kudoed Authors