Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
simoevry
Contributor
Contributor

Hide numbers

Hi

I want to hide numbers for example :

FROM TABLE CASES

COL1

00000000000012304 => 12304

0000000000000040012=> 40012

3 Replies
Anonymous
Not applicable

Looks like your COL1 field is in text format.

Try converting it to numeric format, maybe something like this :

     num(COL1)

surendraj
Specialist
Specialist

Try with

replace(trim(replace(COL1,'0',' ')),' ','0') as COL1

simoevry
Contributor
Contributor
Author

Thanks for all