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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

filter date in set analysis

Hi guys,

          I have this expression inside an textfield:

=num(Sum({<date = {$(v_max_date)}, kind = {1}>}price), ' #.##0,00 €')

and the expression return me this error:

Error: Error in set modifier ad hoc element list: ',' or ) expected

but I don't understand where I've to add ',' or )

I've define v_max_date in this way =max(date)

Thanks.

1 Solution

Accepted Solutions
sunny_talwar

Try this

=Num(Sum({<date = {"$(=$(v_max_date))"}, kind = {1}>}price), ' #.##0,00 €')

View solution in original post

6 Replies
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

Try with:

=num(Sum({<date = {'$(v_max_date)'}, kind = {1}>}price), ' #.##0,00 €')


Saludos.

Anil_Babu_Samineni

I think yours is make sense. What is the wrong?

=num(Sum({<date = {$(=v_max_date)}, kind = {1}>}price), ' #.##0,00 €')

OR

=num(Sum({<date = {'$(v_max_date)'}, kind = {1}>}price), ' #.##0,00 €')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
shiveshsingh
Master
Master

PLease try this

=num(Sum({<date = {"$(v_max_date)"}, kind = {1}>}price), ' #.##0,00 €')

Anonymous
Not applicable
Author

no one works, i've add the attachment at the main question

sunny_talwar

Try this

=Num(Sum({<date = {"$(=$(v_max_date))"}, kind = {1}>}price), ' #.##0,00 €')

Anonymous
Not applicable
Author

Thanks a lot