This version is out of date, covering development from v5.0.0 to v5.12.2. It is maintained here only for inbound reference links from elsewhere.

Jump to the current version of aTbRef.

Tinderbox Icon

Greater Than


$DateAttribute > "date"

Gathers all notes whose $DateAttribute value is after the given date. The left-side date cannot be more than 'never'.

WARNING: unlike an equals comparison the time element of the date/time is used. If $DateA is 28 November 2012 21:00 and $DateB is 28 November 2012 12:00 then:

$DateA > $DateB is true

whilst

$DateA == $DateB is true

This is because the former takes time into account and the latter doesn't.


$NumberAttribute > number

Gathers all notes whose $NumberAttribute value is greater than the given number.


Other data types…

Boolean. A true is always greater than false.

Color. Tinderbox does not perform greater/less than comparisons on Color-type attributes.

Sets. Tinderbox does not perform greater/less than comparisons on Set-type attributes.

String. A lexical comparison is done of each string character by character, i.e. the ASCII value of each first character, then each second character, etc. Uppercase characters < lowercase < numbers. For other characters, accents, etc., comparisons are likely to not meet linguistic expectation as the values will be based on Unicode sort order. Thus

"dog" > "cat"

"dog" > "Dog"

"dogs" > "dog"

"dogs" > "dogma"

"dogs" < "døg" <-- NOTE!


Possible relevant notes (via "Similar Notes" feature):


A Tinderbox Reference File : Objects & Concepts : Basic Comparison Operators : Greater Than