June 30, 201015 yr Hi, I have a field (jepg #1) that only shows the first 5 lines, and 90% of the time that's plenty of room to users to explain what they need, but there are sometimes that users will use 10 lines. Currently the only way to see the lines is to click on the field to extend it. (see Jpeg #2) I'm trying to see if there's a way to use the conditional formatting to flag the end user that the field has extra lines and he has to click on the field to extend. any ideas how i can do this or if its even duable. Thanks
June 30, 201015 yr This is tricky in FMP because there is no "line count" function, and counting the number of characters does not help if there carriage returns in the text. So the difficult part is recognising when there is "too much text" in the field. The expression for the conditional formatting would be something along the like of counting the number of characters and the number of carriage returns: Length( self ) > X or Patterncount( self ; "¶" ) > Y
Create an account or sign in to comment