March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Community, I have a question and I do not know how to make the query, but I will try to be clear ...
I have a table with several columns (management, area, company, description of the action to be performed, status of the share (late, on time, etc.) and the expiration date of the share).
What I need is to generate a measure that allows me to obtain the number of all corrective actions with delayed action status that are more than 15 days late.
How can I do it?
Thank you
Solved! Go to Solution.
@Syndicate_Admin , There should be two days, assume the second date is today. You need a measure
Calculate(countrows(Table), filter(Table, Table[Status] = "Late" && Table[expiration date] <Today() -15 ))
Hi @Syndicate_Admin ,
Something like below:
measure = Calculate(COUNT([ACTION]),FILTER('TABLE',[STATUS]="LATE"&&[DELAYED DATE]>15))
If you don't have the [DELAYED DATE] in the table, you could use DATEDIFF() function to get the day difference between [expiration date] and TODAY() or any given date.
Modify the formula as below:
measure =
VAR DELAYED DATE = DATEDIFF([expiration date],TODAY(),DAY)
RETURN
Calculate(COUNT([ACTION]),FILTER('TABLE',[STATUS]="LATE"&&[DELAYED DATE]>15))
Best Regards,
Jay
Hi @Syndicate_Admin ,
Something like below:
measure = Calculate(COUNT([ACTION]),FILTER('TABLE',[STATUS]="LATE"&&[DELAYED DATE]>15))
If you don't have the [DELAYED DATE] in the table, you could use DATEDIFF() function to get the day difference between [expiration date] and TODAY() or any given date.
Modify the formula as below:
measure =
VAR DELAYED DATE = DATEDIFF([expiration date],TODAY(),DAY)
RETURN
Calculate(COUNT([ACTION]),FILTER('TABLE',[STATUS]="LATE"&&[DELAYED DATE]>15))
Best Regards,
Jay
@Syndicate_Admin , There should be two days, assume the second date is today. You need a measure
Calculate(countrows(Table), filter(Table, Table[Status] = "Late" && Table[expiration date] <Today() -15 ))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |