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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

I am Having Problem with Pivot Table

Hii All,

        I have a Pivot table containing 3dimensions(Fld.Name,Month And Date) and 6expressions(Latex,MonthToDate(MTD),YTD,Budget,L/Y Actual for month and L/Y Actual for Date).

My Requirement is:-

   1.MTD and YTD shows the value only when Month are expanded,otherwise it will be blank or 0.

And I dont have any idea how to write an expression of LY Actual for Month and LY Actual for Date.

Please guide me.

Thanks & Regards.

Koushik.

1 Reply
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi Koushik,

you can enter an if-then-else-statement like:

If(GetSelectedCount(Year)=0,

Sum({<Year={$(=Year(Today()))}>} Budget),

Sum({<Year={$(=Only(Year))}>} Budget))

Greetings from Munich