The Community will be undergoing maintenance from Friday February 21 - Friday, February 28 and will be "read only" during this time. To learn more, check out our Announcements blog post.
I have a script that has been in production for months and just recently the script is failing on the selectRecordsAsync() function…
let config = input.config();
let tbl = base.getTable('Status');
let qry = await tbl.selectRecordsAsync();
for (let r...
How do I test for an empty Message field when it’s a “Long text” type?
This code does not work…
let strReplyStatus = '';
if (rsReply.getCellValue('Message') === '') {
strReplyStatus = 'Empty';
};
if (rsReply.getCellValue('Message') == '') {
s...