Solved! Go to Solution.
Instead of:
([COLUMN WITH LATITUDE VALUE] >= [Latitude])
Try:
([_THISROW].[COLUMN WITH LATITUDE VALUE] >= [Latitude])
Or:
([COLUMN WITH LATITUDE VALUE] >= [_THISROW].[Latitude])
@Marcelkrush wrote:
The problem is that it is returning the message "'([COLUMN WITH LATITUDE VALUE] >= [Latitude])' does not have valid input types"
Confirm the Column data types for each of the columns in that part of your expression. You may need to convert one or both to another data type--e.g., using the DECIMAL() function.
Instead of:
([COLUMN WITH LATITUDE VALUE] >= [Latitude])
Try:
([_THISROW].[COLUMN WITH LATITUDE VALUE] >= [Latitude])
Or:
([COLUMN WITH LATITUDE VALUE] >= [_THISROW].[Latitude])
User | Count |
---|---|
15 | |
11 | |
11 | |
8 | |
3 |