Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create Ratios in pivot table

Hello,

I have to develop Ratios report of FI module using qlikview 11.0

Report is ready, but the problem is on changing selection of any year or month or any other field, the time it takes to refresh the data is too long.

I have around 40 ratios in 1 pivot table.

Also each ratio is having different expressions.

for e.g some ratios is having as at expression and some ratios YTD expressions.

some ratios is having only Numerator, some ratios i having N/D and some ratios N/(D/D2)

so for all these different types of calculations, I have written if conditions in expressions as below:

if ratio1 then N,

if ratio2 then N/D,

if ratio3 the N/(D/D2)

and so on with different logics.

so please can anyone help to improve the performance of the report.

2 Replies
ecolomer
Master II
Master II

can you upload the file qv to analyse?

terezagr
Partner - Creator III
Partner - Creator III

Try to put all your expressions in the load script either like flags or like variables.

eg: Load script

vRatio1 = "if ratio1 then N";

in your pivot table than in the expression editor call the variable =$(vRatio1)