Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help Hiding a row

Hi Guy's

I have the following sheet as shown below. I would like to hide all rows where the expression "date count" fields is 3. Is this possible ?

Kind regards

qlikview.jpg

1 Solution

Accepted Solutions
Not applicable
Author

Thanks so Much Sunny

I tried the following in a calculated dimension and it worked.

=Aggr(if(isNull(MaxString([Shipment Document Release Date])) or IsNull(MaxString([Actual Discharge Date])) or IsNull(MaxString([Final Payment Recieved])), [Our Shipment Reference]), [Our Shipment Reference])

Regards

View solution in original post

3 Replies
sunny_talwar

May be use this kind of logic for all your expressions, except date count expression

If([date count] <> 3, yourexpreission)

and for date count expression

If(expression <> 3, expression)

Not applicable
Author

Thanks so Much Sunny

I tried the following in a calculated dimension and it worked.

=Aggr(if(isNull(MaxString([Shipment Document Release Date])) or IsNull(MaxString([Actual Discharge Date])) or IsNull(MaxString([Final Payment Recieved])), [Our Shipment Reference]), [Our Shipment Reference])

Regards

sunny_talwar

Great, I am glad you were able to figure it out. Please close the thread now