This content has been marked as final.
Show 2 replies
-
1. Re: Filter data source based upon comparison of two fields in that data source
Benjamin Greene Aug 23, 2016 11:17 AM (in response to Matthew Forrest)1 of 1 people found this helpfulYou could try making a new calculated field like:
IF [Date] < [DK Launch Date]
THEN "YES"
ELSE "NO"
END
And then filter on that field for all the "YES" values.
-
2. Re: Filter data source based upon comparison of two fields in that data source
Matthew Forrest Aug 23, 2016 10:20 PM (in response to Benjamin Greene)Indeed, this did work. Really appreciate the simple and effective solution