Skip to main content

IBV is a UI only formula field that is true if “Date bid values sent” is not null.

I want to use the statement below as the button label, but it shows “Send Bid Values” whether IBV is true or false:

{{^IBV}}Send Bid Values{{/IBV}}{{#IBV}}Re-send Bid Values{{/IBV}}

Yup. Just make sure to use the API names of the fields.


Thanks, Pat.  Turns out I was trying to use a model other than the default for the page title section.  This worked:

{{^$Model.RFP.data.0.IBV}}Send Bid Values{{/$Model.RFP.data.0.IBV}}{{#$Model.RFP.data.0.IBV}}Re-send Bid Values{{/$Model.RFP.data.0.IBV}}