ContributionsMost RecentMost LikesSolutionsRe: Removing Blank Input Type Sorry, I actually was meaning to show a screen shot or a portion of the form on a real record showing the blank choice being offered to the User. Re: Pop up window from table home to preview record You can force a new Tab with this change to the hyperlink var text Hyperlink = "<a href=" & $URL & " target=_blank" & ">" & $Words & "</a>"; I was thinking that you don't need a small popup as the user has a Preview. There is probably extra syntax for that which I don't have handy. Re: Legacy Forms Well there are 25 years worth of Legacy forms out there is the wild, so in practical terms, I can't see them ever pulling the plug on having them run. But obviously all new development will be on the New forms. My suggestion would be to wait for the New Forms for Mobile to come out of Beta and into "GA", (General Availability) and then convert your forms. Re: Summary report cross tab sort? . Re: Default column widths on embedded reports obscuring data . Re: UPSERT Order processing preferences I doubt that the sequence would affect performance, but I have not tested. Re: Rich Text Field:) Fortunately for you I'm addicted to solving native Quick Base puzzles.Re: Add a record to one table through a form in another tableSo One Artist has Many Events. Can you explain what you mean by this? "and have it update the Artist Table." Can you give an example of "update" If you want to have the details of the child record Events appear on the Parent Artist record, then there will have been a field created on the Artists table for the Events. The field type will be Report Link. put the field on the Artists form and select the form setting to show the Events on the form. Re: Relationship Diagrams-What are your thoughts?I agree w/ Laura (QuickBase Pros) that the pop up annoying when you are trying to untangle a complex app. It should drop off once you click outside its box. I would also agree with the crows feet, although I do not claim to have read Dan's 50 page pdf.Re: Link/button to open specific formno problem here is the formula urlroot() & "db/" & [_DBID_CUSTOMERS] & "?a=dr&dfid=XX&rid=" & [related customer] You get the [DBID_CUSTOMERS] which is the name of your Customers table from the Advanced Settings for the table. The dfid ("da form ID") is from the URL you see when you preview the form. Then you need to either feed it the record id ("&rid=" & [the field containing the record id of the customer]) or else you can also feed it a key field instead ("&key=" & [my key field])