Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi There,
I have a table with the following columns and values:-
ID | SubmissionDate | ClosureDate | OtherColumns
1 | 21-12-2016 | 23-03-2017 |
2 | 12-01-2017 | 01-04-2017 |
Any idea how to create a graph based on the count of submission and closure by different months?
Solved! Go to Solution.
Hi @Juliana,
You create a Calendar table including all the dates, please click "New Table" under modeling type the following formula on home page.
Dates=Calendar(MIN(Table[SubmissionDate]),MAX(ClosureDate))
Then create a calculated month column using the formula.
Month=MONTH(Dates[Dates])
Create a measure using the formula.
result=Calculate( count(Table[ID]), FILTER(Table, COUNTROWS(FILTER(VALUES(Dates[Dates]), Project[SubmissionDate] <= Dates[Dates] && Project[ClosureDate] >= Dates[Dates] )) > 0) )
Create a table visual, select the Table[Month] and [result] as value levels.
Best Regards,
Angelia
Hi @Juliana,
You create a Calendar table including all the dates, please click "New Table" under modeling type the following formula on home page.
Dates=Calendar(MIN(Table[SubmissionDate]),MAX(ClosureDate))
Then create a calculated month column using the formula.
Month=MONTH(Dates[Dates])
Create a measure using the formula.
result=Calculate( count(Table[ID]), FILTER(Table, COUNTROWS(FILTER(VALUES(Dates[Dates]), Project[SubmissionDate] <= Dates[Dates] && Project[ClosureDate] >= Dates[Dates] )) > 0) )
Create a table visual, select the Table[Month] and [result] as value levels.
Best Regards,
Angelia
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!