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: 
Karthick30
Creator
Creator

Blank Data required

Hi,

I am having a column which has blank values. I don't want to remove that. I need to count that. So I used formulas like 

if(isnull(column),'NA',column) and if(len(column)>0,column, 'NA').. 

but still my table column is not showing NA as value.. showing blank ( - ) value

Anyway to fix this

Labels (1)
2 Replies
Or
MVP
MVP

Assuming you are working within a table (not a pivot) and these are measures, those approaches should work as you expect (you could also use Coalesce(column,'NA')).

Could you elaborate on what exactly it is you're doing, in what object type and what context?

stevejoyce
Specialist II
Specialist II

why not just this?  i'll add a trim just incase its blank spaces...  if(len(trim(column))>0,column, 'NA')