[SalesForce] Getting the long form of an ID in a formula

I have a text field which I want to have the default value of the record's ID (I need the long form).
When I use the Id field in the formula I only get the short form (without the object type sufix)
Is there any way I can get the long form Id in the formula?

Best Answer

You mean the 18 digit Id? You can use CASESAFEID(Id) as a formula to return the 18 digit case insensitive version of the record's Id.

Related Topic