Request: addition of upper() function in bases

Use case or problem

I am trying to add a formula field that changes a string to all upper case.

Proposed solution

There already exists a .capitalize() and .lower()function. Perhaps a .upper() function won’t be too difficult to implement.

Current workaround (optional)

There is no way to do this dynamically. One would have to manually go through and type in the page title in uppercase.

Related feature requests (optional)

I for one would appreciate much more funcitons in the bases formulas

A workaround is to use HTML() for that.

Say you want to display the file names in upper case; use this formula:

html("<span style='text-transform:uppercase;'>" + file.name + "</span>")

Replace file.name with whatever you want to make upper case. If you’re uppercasing a string literal, use quotation marks: … + "uPpErCaSe tHiS" +