October 18, 201213 yr Hello! Anyone know how to construct a calculation to convert long title/text to a short easily displayed short title? example: The Wonderful Walruses Went Home ~ to ~ The Wonderful Walrus... I started this, but don't know how to finish it off, or if it is right to begin with: Case( Length (title) > 10; "Too Long" ) obviously "Too Long" is NOT the result I want. Any help??? :)
October 18, 201213 yr How about LeftWords(Title; 3) & "..." EDIT: or more specifically to your example Left(Title; 10) & "..."
October 18, 201213 yr Author doughemi! this works perfectly for what I needed, thank you for your help. :)
October 18, 201213 yr Author DougHemi or any kind persons This current calculation appends the "..." regardless if the title was reduced or not. I'm looking for the "..." be included only if title has been cut to size. Any suggestions? wooot'woot!
Create an account or sign in to comment