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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
jacek27031
Contributor III
Contributor III

Error in set modifier ad hoc element list

Hi there, what is wrong with this code?

Min({<Date={""$(=max(Date))"},[Vendor key]={'Apple'}>} price)

jacek27031_1-1639673169601.png

jacek27031_2-1639673182161.png

 

 

 

2 Solutions

Accepted Solutions
Vegar
MVP
MVP

You got double double quotations. Try this:

Min({<Date={'$(=maxstring(Date))'},[Vendor key]={'Apple'}>} price)

View solution in original post

anat
Master
Master

Min({<Date={""$(=max(Date))"},[Vendor key]={'Apple'}>} price)

u have used quotes 2 times<highlited in red>

View solution in original post

3 Replies
Vegar
MVP
MVP

You got double double quotations. Try this:

Min({<Date={'$(=maxstring(Date))'},[Vendor key]={'Apple'}>} price)

anat
Master
Master

Min({<Date={""$(=max(Date))"},[Vendor key]={'Apple'}>} price)

u have used quotes 2 times<highlited in red>

jacek27031
Contributor III
Contributor III
Author

Thank you so much @anat & @Vegar .