ContributionsMost RecentMost LikesSolutionsRe: 'Is Set' in Pipelines Thank you BarryDolan , I had this question too and didn't understand it. For those of you who might not have time to dig through the articles, "is set" means there is some value in the field. I was trying to use this as part of a filter that was checking if a checkbox was clicked or not... I thought it meant that the checkbox was "set", but it doesn't. If you use "is set" on a checkbox, it will always pass the filter because checkboxes always have a value (true/false or 1/0 or something, but never null/empty). Now I have to go find out how to actually filter on a checkbox... is it true/false or is it 1/0... but that's a question for another thread I suppose. Re: Save as Spreadsheet shows field HTML codingHarrison, how can this be accomplished? When I create a Formula - Text field and set it equal to the Rich Text field, it also has HTML characters. Re: Stacked Bar Chart--Data Label% of Series Calculates IncorrectlyI'm seeing this same issue. It looks like the % is calculated horizontally, not vertically. I.e., if you have a stacked bar with 5 categories, each category will add up horizontally to 100%. So if you have 2 years, category A will add up to 100% across the two years, rather than adding vertically so that each bar adds up to 100%. Re: How can I get a Rich Text formula field to display without wrapping?Use an HTML table, and specify the "nowrap" attribute for the cell. See example here:https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_td_nowrap Code from URL above is pasted below, modified for a single cell. <table> <tr> <td nowrap> Never increase, beyond what is necessary, the number of entities required to explain anything </td> </tr> </table> Note that the nowrap attribute is not supported in HTML5, and CSS is advised instead. I'll leave it up to you to apply that how you need it.Re: Is there a way to display a message that fires when the record is saved, but doesn't abort the save?Thanks for the help! I have submitted the feedback.Is there a way to display a message that fires when the record is saved, but doesn't abort the save? I am trying to add a "save as draft" feature for one of my forms that will notify the user that the form is saved as a draft, and when they hit "Ok" on the dialogue it would just continue with the save as normal. Right now I have a dynamic rule firing when the record is saved, but my only choices for actions are to abort the save (and display a message) or change something.