Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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