Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi Community,
I have a requirement to write a measure to count all items if a date is great than 180 days from today.
Solved! Go to Solution.
Hi @Anonymous ,
Not sure if I understand, but this counts any date from 180 days ago to today in the table.
If date = IF(MAX(SP_SiteOwners[Last Activity On])>TODAY()-180,1,0)
sum = SUMX(SP_SiteOwners,[If date])
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
Hi @Anonymous ,
Not sure if I understand, but this counts any date from 180 days ago to today in the table.
If date = IF(MAX(SP_SiteOwners[Last Activity On])>TODAY()-180,1,0)
sum = SUMX(SP_SiteOwners,[If date])
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
@Anonymous ,
If you put the second measure on the table it works as well.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
Hi @Anonymous ,
And if you were asking for more than 180 days in the future, change the first measure to:
More than 180 days in the future = SUMX(SP_SiteOwners,IF(MAX(SP_SiteOwners[Last Activity On])>TODAY()+180,1,0))
and point the sum measure to this one.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!