Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
manish_kumar
Partner - Contributor III
Partner - Contributor III

Pivot Table With Pick Match - Data Issue

Hi

I want to show the Actual and planned values in pivot table for YTD and Rolling Six months.

So I am using Inline table for Actual and Planned labels and consecutively using pick match with Expressions.

But while using pick match, when I select the month then YTD values in the rows are not coming correct. Values for only current month is shown whereas the total is showing correct values i.e. of YTD.

If I don't use Pick match the values are coming correct but I'll not be able to frame the attached output.

I want to show the data in the below attached image.

Requirement.PNG

Attaching the sample excel sheet for data and App for more clarification. Excel sheet contains desired output also. !

1 Solution

Accepted Solutions
sunny_talwar

You need to use set analysis around your condition to avoid selections, try this

=Pick(Match(Only({1}[Matrix No]),'1','2'),
(
sum({<[Date] = {">=$(=vCYStart) <=$(=vMaxDate)"}>}[Actual Visits])),
(
sum({<[Date] = {">=$(=vCYStart) <=$(=vMaxDate)"}>}[Planned Visits])))

View solution in original post

2 Replies
sunny_talwar

You need to use set analysis around your condition to avoid selections, try this

=Pick(Match(Only({1}[Matrix No]),'1','2'),
(
sum({<[Date] = {">=$(=vCYStart) <=$(=vMaxDate)"}>}[Actual Visits])),
(
sum({<[Date] = {">=$(=vCYStart) <=$(=vMaxDate)"}>}[Planned Visits])))

manish_kumar
Partner - Contributor III
Partner - Contributor III
Author

Thanks Its working