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: 
Not applicable

Change values to uppercase while loading the excel table data

Hi all,

I'd like to load one column of an excel file transforming all the text in uppercase format.

What is the easiest way to do it in the load script?

Thank you.

Giuseppe

1 Solution

Accepted Solutions
marcus_sommer

This could be done with UPPER(YOURFIELD) as Field.

- Marcus

View solution in original post

6 Replies
marcus_sommer

This could be done with UPPER(YOURFIELD) as Field.

- Marcus

Not applicable
Author

Thank you Marcus.

I did it but when I have to refer to this field in the charts it seems I've always refer to the field as upper([Field Name]).

Is there any way to avoid repeating the upper function when using the field? CAn I rename it in the load script (i.e. new = upper(fieldname)). If yes, how can I do it?

Thank you again.

Giuseppe

alexandros17
Partner - Champion III
Partner - Champion III

Ciao Giuseppe,

la risposta di Marcus è corretta, quando ti riferisci al campo, ripetendo l'esempio di Marcus devi utilizzare Field e non più UPPER(YOURFIELD)

marcus_sommer

This example was for loading within the script. In GUI you refers only with the fieldname: sum(Field).

- Marcus

Not applicable
Author

Grazie

Not applicable
Author

Thank you