Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Load
FieldName1,
FIeldName2,
Country
From TableName
Where Match(Country,'uk','us','chaina','india','japan');
can you share your sample file?
Hi,
You can do this at transformation step,
When you are loading table-> Next->Enable Transformation Table
Hi Manish,
while loading excel sheet i want load only fivenames
using if condition is it possible
please help
Regards,
Niranjan
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......
Hi loannis,
I have large data in that i want load only five
country=uk,us,chaina,india,japan like that
Regards,
Niranjan
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.
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,
Load
FieldName1,
FIeldName2,
Country
From TableName
Where Match(Country,'uk','us','chaina','india','japan');