Hello,
I am trying to use the ChildrenFilter shape data to filter what I want to display, and for that I need to display all matches that do not have the string Mask for the custom property XPTO.
- [sep:|~]Property:XPTO!=Mask
This "!=" operator is not working as expected as it returns no results.
Can someone give me some help on here 🙂
Hi Bruno,
You can use a custom property as a filter. In your case from what you are showing, I believe you are missing the [] brackets around the Property data. Try using:
[sep:|~][property:XPTO]!=MaskSince this is a nested shape, to verify you are seeing the correct data, you can test with a shape data field of Property set to XPTO, which will then display the property value.
Making a shape display the value of an element or service property | DataMiner Docs
If you do not see the property value expected, then you may need to add an 'AllowInheritance' or 'ForcePropertyFromParent' option to the shape data to correlate the shape to the correct property.
From Overview of page and shape options | DataMiner Docs
Let us know if this works for you.

Hi Bruno,
So it took a little more to get the nested shape to work. Following is what I was able to come up with.
For the nested shape data fields use:
Parameter | [parameter Id you want displayed]
Options | AllowInheritance=true
Hide | [sep:-~]<A>~A|*|Property:[your property no brackets]|!=Mask
(i.e. – [sep:-~]<A>~A|*|Property:Asset Tag|!=Mask
Let us know if this works or not.
Steve
Hello Steve,
Still not working as you mentioned.
Can I ask you how can I filter by empty or blank values for a property? Eventually it can work that way…
Thanks
The answer to this question will be followed over:
https://community.dataminer.services/question/way-to-show-shapes-in-cube-where-custom-property-value-is-blank/
Hello Steve,
I added the Property shape data to verify the info and it is being show. However the filter condition is not working. The "!=" operator is not working.
How can I check if a property does not have any value? I could try to do that instead…