Hi there !
I’m trying to create a custom row number for example a row number of fixed length with a prefix of a character or string.
For example…
ABC0001
ABC0002
ABC0003
I’m trying to create a formula based on the row number for example…
pad(field(“ROWID”),4,0,‘left’) but keep getting an error: no implicit conversion of Fixnum into String
UPDATE…I think i’ve done it by doing the following…
concat(“ABC”, pad(field(“ROWID”),4,“0”,“left”))
where
ROWID = this.to_s
Can anyone help ?.
Cheers
Nick