Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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.

1 Reply
rubenmarin

Hi Jamal, maybe with:

Load Amount/100 as Amount;

SQL Select Amount

from x.table