Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Search may be unavailable 11:30 PM on Aug 24 to 1:30 AM on Aug 25. Thank you for your patience.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Simple division in script

I have a really simple plan - But can't execute.

I want to divide something i am bringing in by 100.

So e.g.

Load 8*;

SQL Select

Amount /100

from x.table


And cant seem to do it.
Any ideas.

Labels (1)
1 Reply
rubenmarin
MVP
MVP

Hi Jamal, maybe with:

Load Amount/100 as Amount;

SQL Select Amount

from x.table