ContributionsMost RecentMost LikesSolutionsRe: I am new to Quickbase Try something like this If( Contains([Renewal Discount], "Within Threshold") and Contains([Renewal ACV], "<$100,000"),"<div style=\"color:red\"> "& "Sales Leader Approval Required" & "<div>", "Sales Leader Approval Not Required" ) Re: Embed quickbase form on public web page Make the URL use API_GenAddRecordForm It will look something like this: https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm Add these parameters to the end of the URL: &ifv=1&aftersaveconfirm=1 So you should end up with this URL to use for the iframe embed code: <iframe src="https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm&ifv=1&aftersaveconfirm=1"></iframe> Text colors on new dashboard I'm trying to figure out why one text is white and one text is black when they both share the same background color ------------------------------ Everett Patterson ------------------------------ Re: How to show an embedded report in a reportYou can't do that anymore unless you know how to build code pages. I recommend that you keep using the standard reports and use links to open another report. ------------------------------ Everett Patterson ------------------------------ Re: Possible To Display Message on Button Push, then continue with APIs?No, if you are trying to insert javascript into a formula field, I would stop doing that now. It will not work in the future. Can you tell us the purpose of the alert on the button? We might be able to help you with other solutions if we can understand the problem better. ------------------------------ Everett Patterson ------------------------------ Re: Calculated Field in ReportYou should be able to do it on a table report, like this? Create a formula numeric field ------------------------------ Everett Patterson ------------------------------ Re: Upcoming Changes to JavaScript in QuickbaseFor the Formula Rich Text fields, there are two examples below, please confirm these will no longer work. Example 1: Magic Buttons app on exchange, one button has the Press to adjust % Completed and it contains javascript in the href attribute "<a href=\"javascript:" & "$.get('" & $urlseventy & "', function (){" & "location.reload();" Example 2: Formula Rich Text, uses <a> tag and inserts javascript via the onclick attribute "onclick=\"$('#_fid_56').val('" & $optionone & "'); $(this).siblings().children('p').css({'background-color':'#fff', 'color':'#52575b'});Re: Use a Variable in a javascript Alert boxClose, but string literal was missing the single quotes to enclose the text variable var text message = "My Test Message"; var text Danger = "<a style=\" text-decoration: none; background: #FF0000; border-radius: 5px; color: #fff; display: inline-block; width: 220px; text-align: center; padding: 8px 20px; font: normal 700 14px/1 \"Calibri\", sans-serif; text-shadow: none; \" href=\"javascript:alert('" & $message & "')\">MS Readiness</a>"; $danger ------------------------------ Everett Patterson ------------------------------ New Table Report - Survey FieldsThe Survey field stars are not showing on the new table report. The stars show on the old report style but not on the new table style. Other than that, it's a nice new table view! ------------------------------ Everett Patterson ------------------------------ Re: IOL codeYou are targeting the div by class, instead target the table by ID within the div $("#sect_s1").css("background-color","red"); ------------------------------ Everett Patterson ------------------------------