Just wondering is there anyway to sort the number in view so that the highest number is always at the top ? I tried sorting by creation date but the numbers on the documents jump so that 1 is always the first number…
Or if anyone has anyway other simple way of referencing that would be great
The best method is probably to use a computed-when-composed “reference number” field populated with the formula @Unique. That produces an 11-character string in the format:
SROS-1X2YZ3
where “SROS” is a user identifier (normally the first letter of the first name, the first two letters of the last name, and the last letter of the last name, but this will vary if there are “collisions” with other users), and “1X2Y3Z” is a Base36-encoded time stamp that is guaranteed unique for the user for each call to @Unique. BOTH parts of the result are required for a guaranteed unique value.
Ten significant characters in two groups separated by a hyphen is a good format for the users – it’s short enough and well-enough organized that they can keep the number in short-term memory long enough to search for it. If you use the identifier in a view column that is either the primary sort column or that is set to “Click to sort”, end-users can use the quick-find feature to get to the document they require.
Sequential numbering in Notes is not a very good idea in general. You CAN find code that offers a way to do it, but the best advice is DON’T – it only causes heartburn in the long run.