Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Is there a way to add a filter that can return only values where a relationship field is empty? I tried this but it doesn't seem to work.
<%filter%>((field[Category] = "My Category") and not (relationship.exists forwards using field["My Relationship Field"]))<%endfilter%>
I am able to achieve this by using <%beginrelationshipsdetailL2 My Relationship Field%> and <%beginrelationshipsection none%> but I believe this is resulting in extra processing.
Solved! Go to Solution.
Looks like you just do...
<%filter%>((field[Category] = "My Category") and (field["My Relationship Field"] = ))<%endfilter%>
It is a lot quicker than querying the relationship separately and using <%beginrelationshipsection none%>. Having nothing on the right of the equals sign seems kind of weird but it appears to be working.
Looks like you just do...
<%filter%>((field[Category] = "My Category") and (field["My Relationship Field"] = ))<%endfilter%>
It is a lot quicker than querying the relationship separately and using <%beginrelationshipsection none%>. Having nothing on the right of the equals sign seems kind of weird but it appears to be working.