Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
rajtechnocraft
Creator
Creator

Qlikview case sensitive towards column names/table names

Hi Community,

To my knowledge i think QV is case sensitive while reading column names/table names.

Can this be avoided.

I mean irrespective of case can QV read the data

Waiting for a quick response.

I require this beacuse lot my data extraction is manual feed .Data is coming from various excel sheets ,txt files,csv files etc.

So everytime if the columnanme case is not maintained my reload fails..

This has become a big headache for me as i have no control over Data providers.

Regards

Raj

1 Solution

Accepted Solutions
kji
Employee
Employee

At the start of your scrit put:

Force Case Upper;

It will make all fieldnames upper case.

Or have a look at the other options for the Force command if you prefer something else.

View solution in original post

4 Replies
derekjones
Creator III
Creator III

Hi Raj

You can ignore the headers of your source files when you load. Example:

Table1:

LOAD A as Column1,
    
B as Column2,
    
C as Column3

FROM
Exceldoc.xlsx
(
ooxml,
no labels, header is 1 lines, table is sheet1);

The important part above is "no labels, header is 1 lines"

Hope this helps

Derek

rajtechnocraft
Creator
Creator
Author

In this case i need to change my script everywhere my feed is manual.

This will become laborious process..

Not Feasible

danielrozental
Master II
Master II

No, you can't avoid that.

What you should probably do is rename all fields to their upper case and then concatenate them.

kji
Employee
Employee

At the start of your scrit put:

Force Case Upper;

It will make all fieldnames upper case.

Or have a look at the other options for the Force command if you prefer something else.