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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Upper

Hi All,

The following is the SQL Server 2005 query:

select

UPPER (AddressLine1)

from

Person. Address



But How can i convert this query into Qlikview?

Best Regards,

Khalid

4 Replies
sparur
Specialist II
Specialist II

Hello, KHalid.

LOAD

Upper(AddressLine1) as AddressLine

;

sql select
AddressLine1
from
Person.Address

Not applicable
Author

SQL Error:[Microsoft][SQL Native Client]Dialog failed
SQL State:IM008
select UPPER (AddressLine1)
from Person.Address

Not applicable
Author

Try like this:

Upper(AddressLine1) as AddressLine

johnw
Champion III
Champion III


Khalid11 wrote:
SQL Error:[Microsoft][SQL Native Client]Dialog failed
SQL State:IM008
select UPPER (AddressLine1)
from Person.Address<div></div>


Please have another look at how Anatoly wrote the expression. See how the upper(AddressLine1) as AddressLine is done in the LOAD statement, not in the SQL statement? You appear to still be doing it in the SQL statement. If so, that is why you are getting an error. You need to do it in the LOAD statement instead.