- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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 🙂
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
06-11-2024 05:26 AM | |||
09-13-2024 01:56 PM | |||
06-25-2024 05:40 AM | |||
02-20-2023 04:51 AM | |||
11-08-2023 04:50 AM |
User | Count |
---|---|
14 | |
14 | |
11 | |
11 | |
8 |