Pressing Shift+Enter creates a line break in a cell. However, when editing a bulleted or numbered list, Shift+Enter does not create a new item. It’s pretty frustrating and tricky to work around.
1 Like
I’ve discovered that it is sometimes possible to work around this problem by expanding the cell to full screen. It only seems possible when using detail display though.
1 Like
hi @Bjorn_Hansell ,
did you consider using this trick with Char(10)
Concatenate(thisRow.Firstname," ",thisRow.Lastname,
Character(10),thisRow.Address,
Character(10),Concatenate(thisRow.PC, " ",thisRow.City),
Character(10),thisRow.[Mobile number],
Character(10),thisRow.Email
)
It forces a line break in a cell
Cheers, Christiaan
You need to use Control
+ Enter
to create more list (bulleted, numbered to do) items @Bjorn_Hansell.
6 Likes
ctrl+enter works. Thanks @Johg_Ananda!
1 Like