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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

adding same company name into one with corresponding value

hi folks,

i have data like this

Header 1Header 2
unitvalue
India100
Usa200
INDIA300
USA200
CANADA100
canada500


how can i add same country into one , this data(unit names ) was  already loaded into qlikview .

Thanks in Advance

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

   

Original:

Load

     Upper(unit) as Unit,

     Sum(value) as Value

From

     Datasource

Group by Upper(unit);

View solution in original post

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Try like this

    

Load

     Upper(unit) as Unit,

     Sum(value) as Value

Resident

     TableName

Group by Upper(unit);

Hope it helps

Celambarasan

Anonymous
Not applicable
Author

hi plz solve with little example,

iam unable to achieve the desire result.

resident table load showing error

THANKS,

CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

   

Original:

Load

     Upper(unit) as Unit,

     Sum(value) as Value

From

     Datasource

Group by Upper(unit);