Forum Discussion
DavidB023
8 years agoHelper III
Filter Date
Hi everybody ! Is there a filter to show on a slicer, only date which have a value associated ? Here is my table, I don't want date with a 0%... Thanks Best regards David
prateekraina
8 years agoMemorable Member
Hi DavidB023,
What is the data type of this column?
Prateek Raina
DavidB023
8 years agoHelper III
prateekraina
It is decimal number and I turn them in purcent.
- prateekraina8 years agoMemorable Member
Hi DavidB023,
Check out this pbix.
I have tried to replicate your scenario and used a calculated column to achive the result.ValueWithoutZero = IF(Table1[Value] = 0,BLANK(),Table1[Value])
Let me know if you face any issues.
Prateek Raina
- DavidB0238 years agoHelper III
Thanks for your answer, it worked easily with that after I put an advanced filter on page "is not blank"
Best regards