Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
zied_ahmed1
Specialist
Specialist

how to ignore duplicated rows

Hello..

I have this pivot table and i would like when the row have  code fournisseur = 0 and the Nom Fournisseur = ' - ' disappear because it's the wrong duplicate row

Thanks for help

Question.png

6 Replies
zhadrakas
Specialist II
Specialist II

go to Dimension tab on "Nom F..." and tick "Suppress when Value is null"

zied_ahmed1
Specialist
Specialist
Author

I need to keep Nom F.. = ' - ' when the code Four <> 0 so i need to do a condition for them together

zhadrakas
Specialist II
Specialist II

then try dynamic Dimension for Nom F

=if(code Four <> 0  AND len(trim(Nom F))=0, ' ', Nom F)

and tick "Supress when value is null"

prieper
Master II
Master II

You may choose under dimension to show all value and under Presentation not to display missing or NULL-values

PrashantSangle

How many expression do you have??

In all expression try if condition like

if(code fournisseur<>0,YourExpression)

You can modify it in set anlysis.

like

sum({<[code fournisseur]-={0}>}Sales)

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
zied_ahmed1
Specialist
Specialist
Author

I would like to remove the field with - in Nom fourniss and kept the other.the problem if i i do delete null values i will remove the first row who is not duplicated

keep_yannick.png