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: 
ABP2021
Contributor II
Contributor II

How to add new Value in existing field in Qlik sense?

Hello friends,

Can anybody tell me how to add new value to existing field.

Ex- Suppose i have field like Division and i want to add new value in that Division as ALL where ALL is selection of all the divisions i.e. ALL=A,B,C,D

Division

A

B

C

D

ALL

1 Reply
GaryGiles
Specialist
Specialist

One approach that you could try:

If you start with a table containing:

Division

A

B

C

D

 

Add the following to your load script:

DivisionGrp:

Load Division as DivisionGrp,

          Division

Resident Division;

 

Load 'All' as DivisionGrp,

         Division

Resident Division;

 

Then use DivisionGrp in your filter pane.  When you select "All", it will include all of the Divisions.