Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
When I am fetching the data from sql database, Unnecessary dot(.) has been added in data after store the qvd.
For example if in database '46' value is there some field but when I am fetching it is '46.' in qlikview.
here in DB field length is 2 but in qvd its length of 3.
Can Anybody has any Suggestions in this regards, then please help.
Regards,
Vishal Modi
May be use Trim()
Thanks for giving time!
I already used Trim(), But its not work.
Regards,
Vishal
Use Num function
Num(fieldname) as fieldname
Regards,
Pratik
Thanks!
Cant use num function, because this is a text field in database.
Regards,
Vishal
Can you show an example of the data ?
I would try to load this field with: text(Field) within a Preceding Load. If this don't work I would look for a different database-driver.
- Marcus
May be replace() will work
REPLACE(TextString,'.','') AS TextString
purgechar( yourTextField, '.') as newValue
For example if in database '46' value is there some field but when I am fetching it is '46.' in qlikview.
here in DB field length is 2 but in qvd its length of 3.