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

Announcements
Discover the Trends Shaping AI in 2026: Register Here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

straight table

Hi Team

I have a straight table which is having 25 rows

can we delete certain rows in the straight table, how can we do

regards

Pnreddy

16 Replies
lukaspuschner
Partner - Creator
Partner - Creator

can you attatch the file and explain which rows you want to delte?

MK_QSL
MVP
MVP

You can load certain rows...

consider that you wants to load only three customer out of five as C1, C2, C3, C4, C5

Use Calculated Dimension

If(Match(Customer,'C1,'C2,'C3),Customer)

Tick Suppress When Value is null

Expression May be something like SUM(Sales)

This will load only data for customer C1, C2 and C3.

its_anandrjs
Champion III
Champion III

Use calculated dimension for that or if have a sample data so provide that.

Not applicable
Author

in those customers i want to delete only c3 how can we do

its_anandrjs
Champion III
Champion III

Updated now check

Write like

If( Not Match(customers,'c3'),customers) in the dimension

Or

If(customer <> 'C3', customer)

SunilChauhan
Champion II
Champion II

if some values are null then

go to presentation tab -> select field and check Omit when null

Sunil Chauhan
MK_QSL
MVP
MVP

IF(Customer <> 'C3', Customer)

or

If(NOT Match(Customer,'C3),Customer)

TIck Suppress When Value is NULL

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Calculated dimension:

= If(Customer <> 'C3', Customer)

OR

=Aggr(If(Customer <> 'C3', Customer), Customer)

And check suppress nulls for that dimension.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

i want to delete bello a4  row what to do

Capture.PNG.png