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

QlikView ETl Loading

We are getting Data in .txt Sources while loading into QlikView some columns are Having

From Source

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

'

-

Null

After loading

Qlikview View Output

0

0

0

0

0

0

0

0

0

0

Dont need too show #N/A as 0 show as #N/A 

4 Replies
its_anandrjs
Champion III
Champion III

In your load script for that field try to add Text(FieldName)   and then reload the table again

try like  this

Ex:-

Load

Text(FieldName)  as Fielname //For #N/A and other related rows

From Location;

Regards

Anand

Anonymous
Not applicable
Author

Thanks Anand for quick response if same column has null and special characters need to show an error while loading data in to QlikView any possiblities are there

its_anandrjs
Champion III
Champion III

If there is null values then in which format they saved in data you have to interpret that like i assume it is 0 then try with If(Len(FieldName) = 0, Null(), Text(FieldName) ) as NewField you have to do multiple transform for this and may be NULL value handling also.

Regards

Anand

Not applicable
Author

Hi,

Alt(fieldname,0)