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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Dannyd20
Regular Visitor

Chart requests vs assignments per week

Hi forum,

 

I am struggling with something that I think must be simple, but I can't seem to figure it out! 

I want to use Power Bi to chart requests vs assignments per week.

I have the dates requests were logged and the date they were assigned.

 

I want a chart to show per calendar week, how many requests came in that week and how many were assigned that week ?

 

Thanks

 

some sample data:

 

Logged:
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23
03-Jul-23

 

Assigned:
11-Jul-23
04-Jul-23
11-Jul-23
11-Jul-23
11-Jul-23
11-Jul-23
04-Jul-23
04-Jul-23
11-Jul-23
04-Jul-23
11-Jul-23
11-Jul-23
11-Jul-23
04-Jul-23

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Dannyd20 ,

 

Here are the steps you can follow:

1. Create calculated table.

You can create a calendar table and use Week as the x-axis in the calendar table.

Table 2 =
CALENDAR(
    DATE(2023,7,1),
    DATE(2023,7,31))

Create calculated column.

Week = WEEKNUM('Table 2'[Date],2)

vyangliumsft_0-1694675002297.png

2. Create measure.

Logged_Measure =
COUNTX(
    FILTER(ALL('Table'),
    YEAR('Table'[Logged])=YEAR(MAX('Table 2'[Date]))&&WEEKNUM('Table'[Logged],2)=MAX('Table 2'[Week])),[Logged])
Assigned_Measure =
COUNTX(
    FILTER(ALL('Table'),
    YEAR('Table'[Assigned])=YEAR(MAX('Table 2'[Date]))&&WEEKNUM('Table'[Assigned],2)=MAX('Table 2'[Week])),[Assigned])

3. Result:

vyangliumsft_1-1694675002304.png

 

 

Best Regards,

Liu Yang

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

1 REPLY 1
Anonymous
Not applicable

Hi  @Dannyd20 ,

 

Here are the steps you can follow:

1. Create calculated table.

You can create a calendar table and use Week as the x-axis in the calendar table.

Table 2 =
CALENDAR(
    DATE(2023,7,1),
    DATE(2023,7,31))

Create calculated column.

Week = WEEKNUM('Table 2'[Date],2)

vyangliumsft_0-1694675002297.png

2. Create measure.

Logged_Measure =
COUNTX(
    FILTER(ALL('Table'),
    YEAR('Table'[Logged])=YEAR(MAX('Table 2'[Date]))&&WEEKNUM('Table'[Logged],2)=MAX('Table 2'[Week])),[Logged])
Assigned_Measure =
COUNTX(
    FILTER(ALL('Table'),
    YEAR('Table'[Assigned])=YEAR(MAX('Table 2'[Date]))&&WEEKNUM('Table'[Assigned],2)=MAX('Table 2'[Week])),[Assigned])

3. Result:

vyangliumsft_1-1694675002304.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
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.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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