The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
21 | |
18 | |
16 | |
13 |
User | Count |
---|---|
41 | |
38 | |
23 | |
20 | |
20 |