I have a collection of 3 items. Consider the following code:
Set( varAmount, CountRows(collection));
Notify(Text(varAmount) & " --- " & Text(CountRows(collection)));
For some reason, this is the output:
2 --- 3
How come these are not exactly the same value, when used like this?