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

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

Chart with null row

@ ! !Hello everyone,

I am creating a chart table (pivot table) but there is a row with a null value I dont know why.

If I dont upload any data it gives me this result:

And if I do (load data) this line keep there:tableNon.bmp

table.bmp

I guess the problem is in the creating of chart I not in the script.
My dimensions are Day and Volume. Because of this simple problem when I make another column to just add 50 to free (the column Free+50) it gives null in every row.

Do you have any ideas? Or any guesses where the problem is?

PS. On my fields there arent no null fields (that's why I think the problem is on the setup of the chart and not in the script to load the data).

16 Replies
Not applicable
Author

I already update with the qvd file. Please if you are going to edit it, tell me the instructions. I am not able to open avd, since I stillo dont have a qlikview license.

Thanks in advance

Not applicable
Author

I already update the first post with it. Thanks

Not applicable
Author

At your QVW configuration your decimal separator is , (comma) and when you load your data you are using . (point), so to QlikView recognize as a number, at Load script you need use Replace(Free,'.',',') or at your field at table use:

Free

=Replace(Free,'.',',')

Free+50

=Replace(Free,'.',',')+50


Jean Filipe Delle

avinashelite

hi

the Free field is in string format hence your not able to add 50 for it .

in the script convert Free filed to number as below

num#(Free, '#,##0.00') as Free


then try with your expression that should work, i am not able to reload ur document

Not applicable
Author

Or just change the initialised variable from a comma to a point.

SET DecimalSep=',';

To

SET DecimalSep='.';


Anonymous
Not applicable
Author

Hi

Something is wrong with your data ,

Free field may not be in number format.

I just stored your table in csv file and reload it.

See the attached qvw with addition of Free + 50

Not applicable
Author

Thanks to all! That was the problem. I had to replace the . to ,