I realize that this is an odd one, but it seems like it should be a quick thing to fix?
If I use figure spaces in
Delimit(), they are being ignored.
This example is
not the expression I am trying to use, but the easiest way to demonstrate the problem:
If(Compare([Track #], >, 9), [Track #],
Delimit([Track #],,/ ))
This should prefix tracks 1-9 with a figure space.
A figure space has a width of one full character.
This means that the right-edge of 1-9 should be in line with the right edge of 10+ in a
left-aligned column.
When using
Delimit() though, the figure space is being completely ignored:
If(Compare([Track #], >, 9), [Track #],
/ [Track #])
If I explicitly add a figure space in front of
[Track #] rather than use
Delimit(), it does work - though this is not suitable for the expression I am trying to write.
If(Compare([Track #], >, 9), [Track #],
Delimit([Track #],,/ ))
It is possible to use a
regular space with
Delimit(), however this is not a full character wide and does not push the characters far enough over to the right: