Using Google Sheets as an example you can do this via Alt + Enter and it allows for easier viewing and editing of nested formulas:
In Fibery it would be really nice if I could restructure this dense single line formula:
If(IsEmpty([Business Name]), [Contact Name], If(IsEmpty([Contact Name]), [Business Name], [Contact Name] + " (" + [Business Name] + ")"))
Into this easier to read formula:
If(IsEmpty([Business Name]), [Contact Name],
If(IsEmpty([Contact Name]), [Business Name],
[Contact Name] + " (" + [Business Name] + ")"
)
)