Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ODBC Carriage return problem

Hi,

Qlikview, for some reason, shows squares instead of carriage-return. I'm reading an access database (.mdb) using ODBC driver.

Any ideas how to solve this?

See illustrations below:

error loading image:

error loading image

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

I recently came across the same issue, with the squares.

I used the REPLACE function to fix this. - See attached.

Thanks.

View solution in original post

3 Replies
Not applicable
Author

Hi,

I recently came across the same issue, with the squares.

I used the REPLACE function to fix this. - See attached.

Thanks.

Not applicable
Author

You could also use an expression something like this:

replace([acc_dsc],'','
')

That will replace the square with a real new-line in your chart. You will need to change chart Properties on the Presentation tab, Multi-line Settings, to make the cells wrap to two lines.

Not applicable
Author

Thanks for the Demo.

It turned out it was tab character (char(9)). Simple REPLACE did the trick. Smile

Dror