开发者

Displaying a placeholder for null values

开发者 https://www.devze.com 2023-03-23 11:38 出处:网络
When a value is null, I don\'t want it to display as a 开发者_如何学Cblank. Instead, I want there to be some kind of default value like \"N/A\". How can I accomplish that?You can use a formula field t

When a value is null, I don't want it to display as a 开发者_如何学Cblank. Instead, I want there to be some kind of default value like "N/A". How can I accomplish that?


You can use a formula field to detect the null value.

If IsNull({Product.Description}) then
"Not available"
else
{Product.Description}

Cheers

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号