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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
ketanvaria
Contributor III
Contributor III

Delete row from table

I have a table here (with sample  data) where the last two is just a sum of the all the months. I don't want to see this in the sheets and analysis. I know how to hid a column from analysis but how do you hide a row from analysis?

15 Replies
ketanvaria
Contributor III
Contributor III
Author

Screen Shot 2018-10-02 at 17.15.35.pngScreen Shot 2018-10-02 at 17.16.01.png

ketanvaria
Contributor III
Contributor III
Author

see my further point below - for A KPI

achakilam1022
Creator II
Creator II

May be

sum({<Date-={}>}ConsultancyIncome(2))

nsetty
Partner - Creator II
Partner - Creator II

Try excluding the records while loading itself.

[Sheet1]:

LOAD

Date([Date] ) AS [Date],

[Income],

[Consultancy Income (2)],

[Product Income (3)],

[Interest earned]

FROM [lib://qlikid_ketanvaria/cross_Table_Sample.xlsx]

(ooxml, embedded labels, table is Sheet1)

WHERE Len(Date)<>0;

Add

WHERE Len(Date)<>0;

agigliotti
MVP
MVP

you can use the expression below:

SUM( {< Date = {"*"} >} [Consultancy Income (2)] )


I hope it helps.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
agigliotti
MVP
MVP

Please mark the answers as Helpful / Correct if applicable to help others cummunity members.

Thanks.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it