Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
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"
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
15 | |
11 | |
8 | |
8 |
User | Count |
---|---|
19 | |
15 | |
15 | |
14 | |
13 |