ContributionsMost RecentMost LikesSolutionsRe: Is there a way to connect a contact (contacts table) to an email (gmail sync) by matching the email address?thank you, unfortunately this solution won't work because I need them linkedRe: Bulk File Upload!Can you please explain how to implement this? I would like to do a one time upload of about 150 files and connect them to existing records. Is that possible?Is there a way to connect a contact (contacts table) to an email (gmail sync) by matching the email address?I cannot use the email as a key field because the values are not all unique and I also don't want to change the key field bc I'm afraid of damaging my data/app. Is there another way?Re: Is there a way to add a record (using a formula button in a report) without being redirected to that record?I got It! var text URL = URLRoot() & "db/" & [_DBID_IRR] & "?act=API_AddRecord" & "&_fid_10=" & URLEncode([Record ID#]) Thanks for your help!Re: Is there a way to add a record (using a formula button in a report) without being redirected to that record?I see what you are saying, thanks. Now the popup is working and it creates the record in IRR but the record is not connected to the ticker (parent record) This is what I have: var datetime SnoozeUntil = ToTimestamp(Today() + Days(1), ToTimeOfDay("0:00")); var text URL = URLRoot() & "db/" & [_DBID_IRR] & "?act=API_AddRecord" & "&rid=" & [Record ID#] & "&apptoken=qqj2k7wz..." & "&_fid_415=" & ToText($SnoozeUntil) & "&_fid_416=" & ToText(Now()); // set the date/time so we know if the line existed when snoozed "javascript:" & "$.get('" & $url & "',function(){" & "$.jGrowl('Record Added', {life: 5000, theme: 'jGrowl-green'});" & "});" & "void(0);Re: Is there a way to add a record (using a formula button in a report) without being redirected to that record?Also, the popup is not necessaryRe: Is there a way to add a record (using a formula button in a report) without being redirected to that record?I get an error for [_DBID_DEALLOCATION_CANDIDATES] what is that supposed to refer to?Re: Is there a way to add a record (using a formula button in a report) without being redirected to that record?no need to refresh, I'd rather not have to wait that extra second between clicksIs there a way to add a record (using a formula button in a report) without being redirected to that record?I would like to create child "IRR" records from a report of parent "ticker" records by just clicking a button. I currently have the "Add IRR" button URLRoot() & "db/" & [_DBID_IRR] & "?a=API_GenAddRecordForm&_fid_10=" & URLEncode ([Record ID#])& "&z=" & Rurl() but I want it to stay on the report view and just create the record in the background I know I can do a workaround by using an action triggered by a checkbox, but I don't want to have to edit the parent record Is there a way I can adjust the existing button code? ThanksRe: How can we email a custom dashboard page as a subscription?thanks