Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
Can someone help me out the conversion of following macro exp into qlikview chart exp.
which of the following is correct??
(a3 * K ^ 3)= pow((a3 * K),3)
(a3 * K ^ 3)= (a3 *pow( K , 3))
regards,
Sahana
Hi Sahana,
This is the correct expression
(a3 * K ^ 3)= (a3 *pow( K , 3))
Regards,
Jagan.
Hi,
Try like this in qlikview
=pow((a3 * K),3)
=a3 * pow(K,3)
Regards,
Jagan.
hi Jagan thanks for the response.
but I want to know which of the two expressions are correct?? ie in between power and multiplication which comes first so that accordingly we can put the brackets.
regards,
Sahana
'^' has the greater precedence than '*' . So,correct one is- (a3 *pow( K , 3))
Hi Sahana,
This is the correct expression
(a3 * K ^ 3)= (a3 *pow( K , 3))
Regards,
Jagan.
thanks a lot