Wrapping Text Calculated Field
-
I need help resolving an issue with wrapping text in a calculated field. I have tried using the suggestion given in another thread mentioning wrapping text by using a Content HTML field, but have been unsuccessful. My calculation is as follows: If age less than x, return y and so forth. The function works properly but the one line limitation doesn’t allow the entire sentences to be shown. Here is the function:
(function(){ if(fieldname23 < 2) return "First sentence here"; if(fieldname23 < 8) return "Second sentence here, and an explanation to go along with it, as well as a suggestion to possible solutions to the problem."; if(fieldname23 < 11) return "Third sentence here"; if(fieldname23 >= 12) return "Fourth sentence here"; })()
The issue is with the Second sentence as it is long.
- The topic ‘Wrapping Text Calculated Field’ is closed to new replies.