Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

How to get value in another field

Hello There,

How to get value in another field?

I try this : if(([Sub_Value]), 'Migrated', [Sub file]) 

 

Sub_ValueSub_fileoutputShould be
General office clerksNONENONEGeneral office clerks
MigratedSARI SARI STORESARI SARI STORESARI SARI STORE
MigratedFARM CORN FIELDFARM CORN FIELDFARM CORN FIELD
MigratedFARMINGFARMINGFARMING
MigratedFISH VENDORFISH VENDORFISH VENDOR
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedFARMINGFARMINGFARMING
MigratedMAGSAYO STOREMAGSAYO STOREMAGSAYO STORE
Car, taxi and van drivers--Car, taxi and van drivers
Other field crop farmers--Other field crop farmers

 

Best Regards,

Bing

Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

Sub_ValueSub_fileoutputShould be
General office clerksNONENONEGeneral office clerks
MigratedSARI SARI STORESARI SARI STORESARI SARI STORE
MigratedFARM CORN FIELDFARM CORN FIELDFARM CORN FIELD
MigratedFARMINGFARMINGFARMING
MigratedFISH VENDORFISH VENDORFISH VENDOR
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedFARMINGFARMINGFARMING
MigratedMAGSAYO STOREMAGSAYO STOREMAGSAYO STORE
Car, taxi and van drivers--Car, taxi and van drivers
Other field crop farmers--Other field crop farmers

 

 

Try this expression:

if([Sub_Value]='Migrated',
   [Sub_file],
   [Sub_Value]
   )  as output

View solution in original post

2 Replies
Vegar
MVP
MVP

Sub_ValueSub_fileoutputShould be
General office clerksNONENONEGeneral office clerks
MigratedSARI SARI STORESARI SARI STORESARI SARI STORE
MigratedFARM CORN FIELDFARM CORN FIELDFARM CORN FIELD
MigratedFARMINGFARMINGFARMING
MigratedFISH VENDORFISH VENDORFISH VENDOR
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedRUBBER PLANTATIONRUBBER PLANTATIONRUBBER PLANTATION
MigratedFARMINGFARMINGFARMING
MigratedMAGSAYO STOREMAGSAYO STOREMAGSAYO STORE
Car, taxi and van drivers--Car, taxi and van drivers
Other field crop farmers--Other field crop farmers

 

 

Try this expression:

if([Sub_Value]='Migrated',
   [Sub_file],
   [Sub_Value]
   )  as output

bsbernabe
Creator
Creator
Author

Thank You so much its working so great...