Closed (won't fix)
Project:
Views (for Drupal 7)
Version:
7.x-3.x-dev
Component:
search data
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
10 Feb 2011 at 16:59 UTC
Updated:
14 Mar 2011 at 12:44 UTC
My query returns 3 fields: actual_capacity, min_capacity, max_capacity.(derived from 2+ tables)
I only need the record where actual_capacity IS BETWEEN min_capacity and max_capacity.
I did not succeed sofar. This is my resulting query, but I need to get rid of the apastrof's.
WHERE (( (node.type IN ('node_type'))
AND (
Comments
Comment #1
dawehnerNo you can't use it.
One way to do it would be writing a filter handler. See the api documentation which is part of advanced help which is in the help folder.
There you can provide any kind of logic.
It's worth to learn how to write handlers in general. You get even more super-powers on views.
Comment #2
bojanz commentedNothing more to do here.
Comment #3
johnvComment #4
johnvCross-posting: Issue #357082: Pull filter value from an argument? also implements an alternative source for the Filter value.
It could be used as basis for this request.