New to Qlik Analytics

If you’re new to Qlik Cloud or Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More

Who Me Too'd this solution

Kushal_Chawda

@rafakmargos  try below

Data:
load Date, 
     Name, 
     Value
FROM Source;

Concatenate(Data)
load Date,
     'Test+Test2' as Name
     sum(Value) as Value
resident Data
where match(Name,'Test','Test2')
group by Date;

View solution in original post

Who Me Too'd this solution