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

Showing Number a decimal point sequence

Hi there.

I have a series of documents which are version numbered, e.g. 5.1, 5.2, ...5.9, 5.10, 5.11 etc.

Any number which ends in a zero is converted to remove the zero (e.g 5.10 becomes 5.1)

I would like two things:

1 - Show numbers as thier original form, e.g. 5.10 should be 5.10

2 - Allow sorting on the field ascending e.g (5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11 etc)

Thanks for your help.

 

Mark.

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan

Hi

Yes, if it is inline load, suppose if its from load statment

Load  Dual(Text([Control Number]), Num#(Replace([Control Number], '.',''))) as [Control Number] 

from yourdatasource;

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

4 Replies
MayilVahanan

Hi

Try like below

Load Dual(Text(Num), Num#(Replace(Num, '.',''))) as Num Inline
[
Num
5.1
5.2
5.3
5.10
5.11
];

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Markbhai
Creator
Creator
Author

Thanks for your help, so my field is called Control Number I should use:

 

Load Dual(Text([Control Number]), Num#(Replace([Control Number], '.',''))) as [Control Number] Inline

 

Thanks

 

MayilVahanan

Hi

Yes, if it is inline load, suppose if its from load statment

Load  Dual(Text([Control Number]), Num#(Replace([Control Number], '.',''))) as [Control Number] 

from yourdatasource;

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Markbhai
Creator
Creator
Author

Thanks

That worked great.

M