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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ift_isabelle
Partner - Creator III
Partner - Creator III

Mathematical question

How can i put this formule in Qlik Sense?

dX = (X - 155000) * 10 ^ -5

dY = (Y - 463000) * 10 ^ -5

I tried:

(X - 155000) * 10 ^ -5 As dX,

(Y - 463000) * 10 ^ -5 as dY

But Qlik Sense doesn't recognize the  " ^ " symbol.

Thank you in advance,

Kind Regards,

Isabelle

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this:

Pow((X - 155000) * 10, -5) as dX,

Pow((Y - 463000) * 10, -5) as dY


UPDATE: Just realized from Gysbert's post that the whole thing is not raise to -5. May be this:


(X - 155000) * (Pow(10, -5)) as dX,

(Y - 463000) * (Pow(10, -5)) as dY

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

May be this:

Pow((X - 155000) * 10, -5) as dX,

Pow((Y - 463000) * 10, -5) as dY


UPDATE: Just realized from Gysbert's post that the whole thing is not raise to -5. May be this:


(X - 155000) * (Pow(10, -5)) as dX,

(Y - 463000) * (Pow(10, -5)) as dY

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

(X - 155000) /100000


talk is cheap, supply exceeds demand