Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Creation of measure according to date

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

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@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 ))

View solution in original post

v-jayw-msft
Community Support
Community Support

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

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

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

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@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 ))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.