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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

calculations in staraight tables

Hi

Iwant to calculate some formula( each column /sum sqrt each table) on a staright tables but I could not find any solution for that

I attach screenshot

thanks

1 Solution

Accepted Solutions
PrashantSangle

Hi,

Use expression like

     Sum(article_use)/Sum(Total sqrt(article_use))

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

7 Replies
PrashantSangle

Hi,

Can you elaborate little more

Use Sqrt() to find square root and to calculate Total use

TOTAL keyword in your expression.

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable
Author

Acutely I know the formula but I cant find a way for instance the calculation of column1

(195/(195^2+230^2+...)

Not applicable
Author

simply I dont know whats formula should be witten in defination in Expresstion tab

anbu1984
Master III
Master III

LOAD F1,

     article_use,

     Sqrt(article_use) As article_use_sqrt,

     book_use,

     soft_use,

     PHD_package,

     lang_package

FROM

test.xlsx

(ooxml, embedded labels, table is Sheet1);

In Expression,

=Sum(article_use) /Sum(Total article_use_sqrt)

PrashantSangle

Hi,

Use expression like

     Sum(article_use)/Sum(Total sqrt(article_use))

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable
Author

which definition show the first cell(195) in straight table?

anbu1984
Master III
Master III

Check this app