cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
FILIPKACZMAR
Advocate I
Advocate I

Counting number of inspections using dates

Hello,

 

I have a sharepoint file with a list of inspections made for my company. I have columns there with a date of inspection and date of delivered report (from the inspection).

I want to count how many inspections have report delivered in less than 5 days. 

Can you help me? Thank you

Thank you 🙂 

1 ACCEPTED SOLUTION
helpme
Resolver I
Resolver I

Hi,

 

I would break the problem down into 2 steps.

 

1) Create a column with the difference between the two dates. Something like:

 

date difference = DATEDIFF(<Date1>, <Date2>)  

 

 

2) Next, create another column, [Difference of less than 5 days], that says

 

Difference of less than 5 days = if( [date difference] < 5, "Yes","No")

 

 (note that you can change the Y/N to boolean instead)

 

then in a table visualisation, you can add [Difference of less than 5 days] twice and change the setting of one of them to "Count of"

View solution in original post

2 REPLIES 2
helpme
Resolver I
Resolver I

Hi,

 

I would break the problem down into 2 steps.

 

1) Create a column with the difference between the two dates. Something like:

 

date difference = DATEDIFF(<Date1>, <Date2>)  

 

 

2) Next, create another column, [Difference of less than 5 days], that says

 

Difference of less than 5 days = if( [date difference] < 5, "Yes","No")

 

 (note that you can change the Y/N to boolean instead)

 

then in a table visualisation, you can add [Difference of less than 5 days] twice and change the setting of one of them to "Count of"

Thank you!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors