Discussion Board for collaboration related to QlikView App Development.
I have two Fields- BRANCH and LOCAL in two different tables
TableA:
BRANCH |
ACCOUNTS |
HR |
LEGAL |
IT |
SERVICES |
TRAVEL |
SUPPLY |
TableB:
LOCAL |
SALES |
CORPORATE |
MARKETING |
EVENTS |
MAINTENANCE |
MEDICAL |
PUBLICITY |
I need to create a new combined Field with all the combinations of the values from the two fields
Combined Field:
ACCOUNTS_SALES |
ACCOUNTS_CORPORATE |
ACCOUNTS_MARKETING |
ACCOUNTS_EVENTS |
ACCOUNTS_MAINTENANCE |
ACCOUNTS_MEDICAL |
ACCOUNTS_PUBLICITY |
. |
. |
. |
. |
. |
. |
SUPPLY_SALES |
SUPPLY_CORPORATE |
SUPPLY_MARKETING |
SUPPLY_EVENTS |
SUPPLY_SUPPLY |
SUPPLY_MEDICAL |
SUPPLY_PUBLICITY |
Whenever a user selects ACCOUNTS_SALES in the Combined Field, it should select 'ACCOUNTS' in BRANCH and 'SALES' in LOCAL. Similarly, selecting SUPPLY_PUBLICITY should select 'SUPPLY' in BRANCH and 'PUBLICITY' in LOCAL fields.
Try this.
BRANCH:
LOAD * INLINE [
BRANCH
ACCOUNTS
HR
LEGAL
IT
SERVICES
TRAVEL
SUPPLY
];
Outer Join(BRANCH)
LOCAL:
LOAD * INLINE [
LOCAL
SALES
CORPORATE
MARKETING
EVENTS
MAINTENANCE
MEDICAL
PUBLICITY
];
Combined:
NoConcatenate
LOAD BRANCH, LOCAL, BRANCH&'_'&LOCAL As [Combined Field]
Resident BRANCH;
Drop Table BRANCH;
Try this.
BRANCH:
LOAD * INLINE [
BRANCH
ACCOUNTS
HR
LEGAL
IT
SERVICES
TRAVEL
SUPPLY
];
Outer Join(BRANCH)
LOCAL:
LOAD * INLINE [
LOCAL
SALES
CORPORATE
MARKETING
EVENTS
MAINTENANCE
MEDICAL
PUBLICITY
];
Combined:
NoConcatenate
LOAD BRANCH, LOCAL, BRANCH&'_'&LOCAL As [Combined Field]
Resident BRANCH;
Drop Table BRANCH;