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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

Avoiding blanks on pivot table

Hello Dear Experts,

i am trying to display the page only Tier1 values for three months for that i am using below expression

=only({<Month=, MonthYear={"$(=Date($(vMonth),'MMM YY'))"}>}

if ((RAG_RATING_CD) = 'R', '1'))

Here im getting Tier1 including the blanks, i just want to remove the blanks

i need help on restrict the page to only Tier1 values any suggestion

for reference i have attached image

Thanks In Advance,

Niranjan

14 Replies
settu_periasamy
Master III
Master III

Hi,

May be try this for all your expression (already sunindia‌ suggested) except which is showing value '1', i think middle expression

1st Expr:  if(

only({<Month=, MonthYear={"$(=Date($(vMonth),'MMM YY'))"}>}

if ((RAG_RATING_CD) = 'R', '1')) =1, 1st Expression)

2nd Expr : 

if(

only({<Month=, MonthYear={"$(=Date($(vMonth),'MMM YY'))"}>}

if ((RAG_RATING_CD) = 'R', '1')) =1, 2nd Expression)


like wise other expression except  this one

only({<Month=, MonthYear={"$(=Date($(vMonth),'MMM YY'))"}>}

if ((RAG_RATING_CD) = 'R', '1'))


NavinReddy
Creator II
Creator II
Author

Hi Jonathan,

Good Morning, Thanks for your reply

i have tried but still im getting same, i have attached sample application

please suggests me where im doing wrong

Best Regards,

Niranjan

NavinReddy
Creator II
Creator II
Author

Hi Settu_Periasamy,

Good Morning, Thanks for your reply

its bit confusing me do you want me to write all the conditions at one place

i have attached sample application

suggest me the right way to do ??

Best Regards,

Niranjan

settu_periasamy
Master III
Master III

May be like attached?

NavinReddy
Creator II
Creator II
Author

Thanks so much its working fine