Hey Nathan,You can accomplish this directly within the graph without having to create an additional field.When creating the bar graph to display how many records were submitted per month, simply select your date field in the X-axis and use the "Bucke...
Hey Stephanie!I believe you can solve this by using the WORKDAY_DIFF formula. (Counts the number of working days between startDate and endDate, inclusive. Working days exclude weekends.)So you could build a formula field called "Workdays Difference" ...
Ran into the same problem, and it was super useful to learn that you cannot use "updateOptionsAsync" in scripting blocks.Thus the option is to output the multiple select from the scripting block, and then use an Update block to insert those values in...
Data can be added onto the form via hidden fields, which will work.(ScorrWorld I believe is talking about fields hidden by visibility rules, but the checkbox Lauren_Lundholm mentions works if hidden (and pre-populated) via url parameters).But this so...
"undefined" will happen when you miss-reference an input.For example if you define a RecordID input, but then reference it in your code as:config.recordIDThe misspelling / typo will cause that variable to be undefined.