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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Syndicate_Admin
Administrator
Administrator

Learning curve

Good night, someone who can help me with the following topic: I have a table with the date of entry to "production" of different analysts and another with the monthly productivity of each month of the last 8 years. I need to compare what the productivity curve of the 1st month, 2nd month, 3rd month and so on, of each of the analysts, is like, but the 1st month of each is not the same month for everyone. Example someone entered in April 2015 and another analyst in October 2018 and for each in this example this would be their first month.

I'd like to have a report of evolution for months and an average curve

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, @Syndicate_Admin 

According to your description, I think the output can be achieved using the line chart in the Power BI, you can follow the steps:

This is my test data based on your description:

v-robertq-msft_0-1615271914980.png

 

I created a line chart and place it like this:

v-robertq-msft_1-1615271915263.png

 

As we can see, the line in the chart can display the value [Productivity] of each person from the month they joined.

You can also go to the “Format”->X axis to set the start date and end date of the line chart manually based on your requirement, like this:

v-robertq-msft_2-1615271915272.png

 

To get the Average line, you can to to the ”Anakytics” to add an average line, like this:

v-robertq-msft_3-1615271915280.png

 

You can also create a measure to get the dynamic average of each month, like this:

 

Average =

CALCULATE(AVERAGE('Table'[Productivity]),FILTER(ALL('Table'),[Date]=MAX([Date])))

 

v-robertq-msft_4-1615271915288.png

 

And you can get what you want.

You can download my test pbix file here

 

If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.

How to Get Your Question Answered Quickly 

 

Best Regards,

Community Support Team _Robert Qin

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

2 REPLIES 2
v-robertq-msft
Community Support
Community Support

Hi, @Syndicate_Admin 

According to your description, I think the output can be achieved using the line chart in the Power BI, you can follow the steps:

This is my test data based on your description:

v-robertq-msft_0-1615271914980.png

 

I created a line chart and place it like this:

v-robertq-msft_1-1615271915263.png

 

As we can see, the line in the chart can display the value [Productivity] of each person from the month they joined.

You can also go to the “Format”->X axis to set the start date and end date of the line chart manually based on your requirement, like this:

v-robertq-msft_2-1615271915272.png

 

To get the Average line, you can to to the ”Anakytics” to add an average line, like this:

v-robertq-msft_3-1615271915280.png

 

You can also create a measure to get the dynamic average of each month, like this:

 

Average =

CALCULATE(AVERAGE('Table'[Productivity]),FILTER(ALL('Table'),[Date]=MAX([Date])))

 

v-robertq-msft_4-1615271915288.png

 

And you can get what you want.

You can download my test pbix file here

 

If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.

How to Get Your Question Answered Quickly 

 

Best Regards,

Community Support Team _Robert Qin

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

Ashish_Mathur
Super User
Super User

Hi,

Please share some data to work with.


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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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