Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Greater than or equal to expression

This is probably really simple and I just can see it clearly. I have the following expression that doesn't return anything. I want anything where the EmployeeDirectory.DOHTenure is greater than or equal to. Here is the expression can anyone see anything wrong with it?

sum({<EmployeeDirectory.DOH={"$(>={vRangeStart}))"}>}EmployeeDirectory.DOHTenure)

Thank you,

ONeputtgirl

1 Solution

Accepted Solutions
shree909
Partner - Specialist II
Partner - Specialist II

Try this

sum({<EmployeeDirectory.DOH={'>=$(vRangeStart)'}>}EmployeeDirectory.DOHTenure)

View solution in original post

2 Replies
shree909
Partner - Specialist II
Partner - Specialist II

Try this

sum({<EmployeeDirectory.DOH={'>=$(vRangeStart)'}>}EmployeeDirectory.DOHTenure)

Not applicable
Author

Perfect, Thank you!