Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Numerics

Hi,

I have created  a table in that i am facing a problem below image is the reference.

Untitled.png

How to convert this into numeric.

28 Replies
prma7799
Master III
Master III

Num(DeviceId,'##.#')

jonathandienst
Partner - Champion III
Partner - Champion III

These are numeric. They are just too large to display as integers. As this is an ID according to your image, load them as text like this:

LOAD

    ...

    Text([Device Id]) As [Device Id],

     ...

;

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
prma7799
Master III
Master III

or please some sample data.

Anonymous
Not applicable

while loading try sth like

num(DeviceID,'#.##') as DeviceID

from

YourTable;

nareshthavidishetty
Creator III
Creator III
Author

Hi,

Still i am getting the same out result after using the below field

Text([Device Id]) as [Device_ID],

Anonymous
Not applicable

try what I suggested..

PrashantSangle

Hi,

try with evaluate()

like evaluate(FieldName)

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
raghvendrasingh
Creator II
Creator II

Hi,

Can you please share some sample data.

Regards,

Raghvendra

nareshthavidishetty
Creator III
Creator III
Author

Hi Balraj,

Actually my device id contains both text and numerics.

Like some ID's consists of numeric and some Id's consists of text.

If i use the ' Num(([Device Id]),'##.#') as [Device_ID],' it show only integer ID's