Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 🙂