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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register 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
rubenmarin1

Hi Jamal, maybe with:

Load Amount/100 as Amount;

SQL Select Amount

from x.table