Unique IDs

Unique IDs

From
Reddit
Status
Updating
Share
Entries

ID

(empty(prop("Created by")) ? "NA" : "") + replaceAll(prop("Created by"), "[a-z-. ]", "") + formatDate(prop("Created at"), "DMHm") + format(length(prop("Name")))
(empty(prop("Created by")) ? "NA"
If Created by is empty, display NA
: "")
Otherwise show nothing.
+ replaceAll(prop("Created by"), "[a-z-. ]", "")
Replace all the lowercase alphabet characters, dashes, periods and spaces in Created by with nothing, which will return the initials.
+ formatDate(prop("Created at"), "DMHm")
Format the Created by date in the DMHm format.
+ format(length(prop("Name")))
Get the character count of the Name property.
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!