Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello ,
Sql server stored procedure is called from qlikview report and specifically one value of a column is getting converted from 401 to 401.0 during load execution ..
tried to CAST all the values to a string of that column in stored procedure , but still it is coming as 401.0 , wanted to come as 401
confused , why such thing is happening.
can somebody throw light on this , please
Many Thanks
Donesh
Hi Jonathan ,
it worked , spot on . Many Thanks
LOAD if (IsNum(ID),round(ID),Text(ID))) As ID, *;
SQL Exec <stored proc>;
hi Sasidhar,
one thing , in preceding load for stored procedure , you have to consider all fields separately , * is not working giving ODBC read failed error.
Cheers
Donesh
Cool, please close this thread by marking the correct answer