AndrewOrner
7 years agoQrew Cadet
Formula URL Line break /n not functional with Text - Multi-Line field
Hi-
I'm attempting to use the following formula to prepopulate a new record form with a multi-line "Description" (where Description is FID 7).
URLRoot() &
"db/" & [_DBID_XXX]
& "?a=API_GenAddRecordForm"
&"&_fid_7=" & "Test description line 1"&"/n"&"Test description line 2"
My goal is that the _fid_7 value in the new record for would read:
Test description line 1
Test description line 2
Instead, it's populating as:
Test description line 1/nTest description line 2
Am I missing a urlencode or something?
I'm attempting to use the following formula to prepopulate a new record form with a multi-line "Description" (where Description is FID 7).
URLRoot() &
"db/" & [_DBID_XXX]
& "?a=API_GenAddRecordForm"
&"&_fid_7=" & "Test description line 1"&"/n"&"Test description line 2"
My goal is that the _fid_7 value in the new record for would read:
Test description line 1
Test description line 2
Instead, it's populating as:
Test description line 1/nTest description line 2
Am I missing a urlencode or something?