Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created a table in that i am facing a problem below image is the reference.
How to convert this into numeric.
Num(DeviceId,'##.#')
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],
...
;
or please some sample data.
while loading try sth like
num(DeviceID,'#.##') as DeviceID
from
YourTable;
Hi,
Still i am getting the same out result after using the below field
Text([Device Id]) as [Device_ID],
try what I suggested..
Hi,
try with evaluate()
like evaluate(FieldName)
Regards
Hi,
Can you please share some sample data.
Regards,
Raghvendra
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