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
Anonymous
Not applicable

SharePoint online list - LineChart with two date columns

Hi Community

 

I need some help with a report. I have two tables (1x SharePoint online list, 1x Date table).

In the SharePoint list I have two entries. One with a date (Created) and one with a date (Finished).

 

I want create a LineChart, where you can see how many entries were created per month and how many were closed.

 

I tried to create two measures, the Created and Finished date measure:

 

Created: 

Anzahl erstellt = COUNTA('Verwaltung Kaizenkarten'[Created])
 

measure created.jpg

 

Finished:

Anzahl Umgesetzt = CALCULATE(COUNTA('Verwaltung Kaizenkarten'[Abgeschlossen am]))
 

Measure finish.jpg

 

Here a overview with the LineChart:

30-07-_2019_12-50-12.jpg

 

Here the tables:

30-07-_2019_12-51-09.jpg

 

Here the Date Table:

Date_table.jpg

 

But I only get the total, but not per month. Also, I don't know how exactly to connect the two tables in order to get the chart right.

 

Thanks for your inputs.

regards

Thomas

6 REPLIES 6
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

In your scenario, we can use the following measure: 

CALCULATE(COUNT('Verwaltung Kaizenkarten'[Created]))

CALCULATE(COUNT('Verwaltung Kaizenkarten'[Abgeschlossen am]))

Best Regards,

Teige

Anonymous
Not applicable

I changed the measures, but it shows also only the total on every month. Should i create a relationship between the two tables? and when yes, what kind of?

 

best regards

linechart.jpg

 

datetable.jpg

Hi @Anonymous ,

Yes, you need to create a relationship between these two tables, then the calendar table can filter the data table.

Best Regards,

Teige

Anonymous
Not applicable

ok, can you tell me what relationsship in this example would be the right one?

 

i've tried it with:

("Abgeschlossen am to date" and "created to date")

 

rel.jpg

 

Result:

month.jpg

 

relationship.jpg

 

Result:

overview.jpg

 

 

Could you please share some sample data? 

Anonymous
Not applicable

Here some Items from the sharepoint list, for example:

 

abgeschl.jpg

Helpful resources

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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