Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load Table File w/ as specific value in Field

I have two tables:

FruitColor
AppleRed
BananaYellow
OrangeOrange

Table 2
X
Y
Z

How do I load Table 2 with all rows, color = red for example?

Thanks in advance!

-Jason

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

something like this:

Load

     Field1,

     'Red' as Color

FROM/RESIDENT

     ...

View solution in original post

2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

something like this:

Load

     Field1,

     'Red' as Color

FROM/RESIDENT

     ...

Not applicable
Author

Awesome, thank you Oleg!