Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
JoseGarcia
Creator III
Creator III

Formula check

Hi there, 

trying to count measure values greater than 365.

Using formula: 

count({<Today()- EightD.D1_KPIDate= {">365"}>} [%ID_8D])

it is giving me error.

Any ideas?
Thanks as always!

Labels (2)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

count(If(Today()- EightD.D1_KPIDate>365, [%ID_8D]))

Or,

count({<EightD.D1_KPIDate= {"=Today()- EightD.D1_KPIDate>365"}>} [%ID_8D])

View solution in original post

2 Replies
tresesco
MVP
MVP

Try like:

count(If(Today()- EightD.D1_KPIDate>365, [%ID_8D]))

Or,

count({<EightD.D1_KPIDate= {"=Today()- EightD.D1_KPIDate>365"}>} [%ID_8D])

JoseGarcia
Creator III
Creator III
Author

that's great! Both work 🙂