Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am trying to load the data from a table but i couldn't see the values for one column names RecID. In table, the column is loading through Identity value. The values are as below.
10000000075607570,100000000075607571 so on.
Data is loaded without errors but i couldn't see the values in dashboard. It is one key column and used for joins. Please guide to resolve this issue.
HI,
Try load with num(RecID) or with Text(RecID)
BR
Ariel
Tried this, but values are not coming properly.
Tried this, but values are not coming properly.
Hi
go to document properties (Alt+Ctrl+D) > Number > and change the format of the field.
BR
Ariel
Try to load your values using evaluate():
LOAD
evaluate(RecID) as RecID,
...
try this
num#(fieldname)
Could you give a view of your LOAD script?