Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Pivot Table

I have created a pivot table and I have extracted following report from it

RISK_YEAR201120122013
Item N0SalesNosPaidSalesNosPaidSalesNosPaid
18------47,9791188,875
1917,4891100,390------
20------43,924116,650
21------17,597127,531
22---12,57811,400---
2365,7772138,982------
2463,554122,50063,554236,10063,554328,500
25------26,80516,200
26---62,255112,500---
279,870114,500------
28------35,788172,900
2934,3992295,100------
30---8,955120,000---
31---10,703111,688---
32------37,47518,100
33---15,209116,20015,209123,250
34---22,334163,637---
3519,964228,000---22,274131,000
3614,659191,050------
37------38,324139,500
38----122,000---
39------59,711110,770
40------115,730328,000
4110,59614,800------
42----137,000-129,800
4355,10818,00051,108421,83351,108180,396

To extract above report I have written following expression

only(SALES)

count(DISTINCT(Nos))

sum( PAID_AMOUNT )

Now   I want to write an expression to return records which are highlighted above Row No 24 and 43. In other words records where Nos appear in all three years 2011,2012 and 2013

Pls help me

1 Reply
its_anandrjs

You can use like a calculated Dimension

Dimension [Item N0] =if((sum(Sales) And sum(Paid) And sum(Nos)) > 0,[Item N0])

Hope this helps

Thanks & Regards