Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
fmazzarelli
Partner - Creator III
Partner - Creator III

target

Hi Community,

how to prevent calculation of the formula is applied to the total row (red box)

(Sum(DIRFIS)

+ sum({<Commessa = {"=KeepChar(Commessa, '0123456789') * 1 > 10"}>} [TotOreLavorate])

+ sum({<Commessa = {'ASSCLI', 'ASSREM'}>} [TotOreLavorate])

+ sum({<CTRAAN = {'N',""},Commessa = {'ASSTEL'}>} [TotOreLavorate])

+ sum({<CTRAAN = {'T',""},Commessa = {'ASSMOD'}>} [TotOreLavorate]))

/ (85 * (count(MeseEsteso)))Immagine.png

9 Replies
sunny_talwar

May be use of Dimensionality() or SecondaryDimensionality() to get this done.

How to use - Dimensionality()

The second dimension... or how to use secondarydimensionality()

fmazzarelli
Partner - Creator III
Partner - Creator III
Author

Hi

sin, use Qlik sense

fmazzarelli
Partner - Creator III
Partner - Creator III
Author

Hi,

Unfortunately I have not figured out how to activate the function

sunny_talwar

Would you be able to share a sample to help you better?

fmazzarelli
Partner - Creator III
Partner - Creator III
Author

Hi Sunny,

the best I can give you is the image attached

Immagine.png

NN - NA lines are total lines and should have the value 0


I know it's my interest give my app but it includes sensitive data and sql connections . To protect the privacy I can not disclose certain information

Anonymous
Not applicable

Have you considered using a straight table? With a straight table you can have the field NA/NN but it won't group by it and you can avoid the total row.

fmazzarelli
Partner - Creator III
Partner - Creator III
Author

HI,

I understand the suggestion , but I would like to take the path indicated by Sunny . I hope I can give an example to follow

fmazzarelli
Partner - Creator III
Partner - Creator III
Author

It was very simple . I found an example and I managed to figure out how to make it happen .
The dimantionality function allows you to have the level for each line and then just an IF to determine if the level should be tested or not.


if the level is 1, then I put " - " if the level is 2 I apply the formula .


if (Dimensionality() = 2,(Sum(DIRFIS)

+ sum({<Commessa = {"=KeepChar(Commessa, '0123456789') * 1 > 10"}>} [TotOreLavorate])

+ sum({<Commessa = {'ASSCLI', 'ASSREM'}>} [TotOreLavorate])

+ sum({<CTRAAN = {'N',""},Commessa = {'ASSTEL'}>} [TotOreLavorate])

+ sum({<CTRAAN = {'T',""},Commessa = {'ASSMOD'}>} [TotOreLavorate]))

/ (85 * (count(MeseEsteso))), '-')