Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

Load

Dear All,

I have a fieldname,inside i have many fieldnames

how can i load only 5 fieldsnames while loading excel in qlikview (fieldname=a,b,c,d,e) like that

Help me some one

Thanks in Advance

Niranjan


1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Load

     FieldName1,

     FIeldName2,

     Country

From TableName

Where Match(Country,'uk','us','chaina','india','japan');

View solution in original post

8 Replies
MK_QSL
MVP
MVP

can you share your sample file?

PrashantSangle

Hi,

You can do this at transformation step,

When you are loading table-> Next->Enable Transformation Table

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
NavinReddy
Creator II
Creator II
Author

Hi Manish,

while loading excel sheet i want load only fivenames

using if condition is it possible

please help

Regards,

Niranjan

giakoum
Partner - Master II
Partner - Master II

if you have a field like : date,product,area,value then read this field into a variable :

FieldsToLoad:

load

     FieldWithFields

from....

set vFieldsToLoad = fieldvalue('FieldWithFields', 1);

data:

load

     $(vFieldsToLoad)

from......

NavinReddy
Creator II
Creator II
Author

Hi loannis,

I have large data  in that i want load only five

country=uk,us,chaina,india,japan like that

Regards,

Niranjan

giakoum
Partner - Master II
Partner - Master II

so something like :

load uk,us,chaina,india,japan from source or you want a field to be filtered? for example filter country by uk,us,chaina,india,japan

You need to be more detailed.

PrashantSangle

Hi,

You can write WHERE clause in Script

Like

Where Country='uk' or Country='us' or Country='chaina' or Country='india' or Country='japan'

regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
MK_QSL
MVP
MVP

Load

     FieldName1,

     FIeldName2,

     Country

From TableName

Where Match(Country,'uk','us','chaina','india','japan');