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') == '') {
strReplyStatus = 'Empty';
};