Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 nareshthavidish
		
			nareshthavidishHi,
I have created a table in that i am facing a problem below image is the reference.

How to convert this into numeric.
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Num(DeviceId,'##.#')
 
					
				
		
 jonathandienst
		
			jonathandienst
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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],
...
;
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		or please some sample data.
 
					
				
		
while loading try sth like
num(DeviceID,'#.##') as DeviceID
from
YourTable;
 nareshthavidish
		
			nareshthavidishHi,
Still i am getting the same out result after using the below field
Text([Device Id]) as [Device_ID],
 
					
				
		
try what I suggested..
 PrashantSangle
		
			PrashantSangle
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
try with evaluate()
like evaluate(FieldName)
Regards
 raghvendrasingh
		
			raghvendrasingh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Can you please share some sample data.
Regards,
Raghvendra
 nareshthavidish
		
			nareshthavidishHi 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
