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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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