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: 
apthansh
Creator
Creator

concatinating 2 values from the same field

Hi - I have below exprressons working ....

 

max({<[Yes_No]={'Yes'},Date={'<=$(=Date(Today()))'}>}Date)

FirstSortedValue({$<[Yes_No]={'Yes'}>} Name, -if(Date<Today(),Date))

but now I want to concatenate values from the same field..I have below expression, but no luckk

aggr(concat(max{<[Yes_No]={'Yes'},Date={'<=$(=Date(Today()))'}>}Date, ',') ,ID)

aggr(concat(FirstSortedValue{$<[Yes_No]={'Yes'}>} Task, -if(Date<Today(),Date))Date, ',') ,ID)

 

Any thoughts please

Labels (2)
1 Reply
tresesco
MVP
MVP

Try putting concat() outside aggr(), like:

Concat(Aggr(max{<[Yes_No]={'Yes'},Date={'<=$(=Date(Today()))'}>}Date, ID) , ',')

Concat(Aggr(FirstSortedValue{$<[Yes_No]={'Yes'}>} Task, -if(Date<Today(),Date))Date, ID) , ',')