Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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 (4)
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) , ',')