ContributionsMost RecentMost LikesSolutionsSeptember 2025 App Builder Qrew Meetup Recap Hi Qrew! Thank you to all who were able to attend yesterday’s App Builders Qrew meetup. Here’s what we discussed. Dashboard design and personalization tips: Sam Lange covered tips on how he uses new dashboards and shared best practices and tips that anyone from beginner to expert builders can use. A couple of highlights include recommendations to match your dashboards to client branding using color pickers and hex codes — access the link to the App Builder community page for color picker and hex code page recommendations from the Qrew. Same also recommends enhancing dashboards with embedded live elements like clocks, weather, and custom greetings via Code Pages. Check out the Code Page Discord for resources, help, and real-life examples from the Qrew. He also shared examples on how he uses emojis and colors to buttons and pages for better visual cues. I loved the look of those! Dashboard Performance Pro tips: Limit dashboard clutter by keeping no more than 5 reports per widget type per tab and leverage tabs or buttons to spread content and minimize heavy filters and drill-downs to keep dashboards snappy. Host images in a public or open-access files table to avoid broken links. For quick data input, use “quick save” buttons with grid edit forms backed by automation pipelines, and configure drill-down reports so filters applied on widgets pass through properly, reducing report duplication. Missed the meeting? Here’s the recording. Plus, kudos to all who engaged in the chat and Q&A — your questions and insights made the session richer! Continue the conversation the App Builder Qrew Group page. You can access all the links shared in the chat, the PDF shared by Sam, and get questions answered from the community. Thank you and we hope you are able to join our next Pipelines Qrew Meetup on September 24th. Best regards, September 2025 Dashboard Tips Discussion Continued Hi Folks! We just concluded our App Builder Qrew meetup featuring SamLange1 and wanted to take the discussion online to see if anyone had any questions about what was shared today. Attached is the Dashboard Tips and Tricks pdf from Sam as well a links shared in the chat during our meeting below: General Dashboards help New Dashboards Release Notes Dashboard enhancements Home pages: https://helpv2.quickbase.com/hc/en-us/articles/4570339299220-Using-the-app-home-page https://helpv2.quickbase.com/hc/en-us/articles/4570350362644-Customize-the-App-Home-Page Limits in Quickbase Most Common Functions that affect performance Color Hex Color Codes https://www.colorhexa.com/ Color Wheel HTML Color Names https://wavget.com/typeitin/ Quickbase Support Center - All Functions and Operators Recording to today's Qrew meetup: https://quickbase.zoom.us/rec/share/j1lBaThMmrMGAQgGdVQMFfNUoVrEgP8kri6wE0kJpLKlY9WMYe6xeMlrbfXH6ez8.ZRqUm7WIOWAITYax?startTime=1757433186000 Got questions? Post below and Sam, Maria, and Esther will follow up. Thank you! August 2025 App Builder Qrew Meetup Recap Hello Qrew, Thanks to all who were able to attend Tuesday’s App Builders Qrew Meetup. Here’s what we discussed: Secure Links for External Access Matt Burger shared how to create secure links that allow external users to access specific records without needing a Quickbase login. He also covered advanced features like setting access windows with start/end dates and a centralized control panel to reset all links regularly for enhanced security. Qrew Tip on Secure Links: Always include an expiration or reset mechanism in your access key formula so older links automatically become invalid whenever you update permissions. Access Keys + Real-Time Bulk Upserts Andrew Carbejal-Everts showcased the GetAccessKey() formula that extracts multiple parameters from the URL, maintains them across tables, and enables instant bulk record operations using Table-to-Table Import. To learn more about Andrew’s use case, he wrote a blog to accompany his use case for folks to follow along. Tip from Andrew: Use custom buttons and hide native Quickbase navigation in secure-link workflows to ensure the access key stays active as users navigate the app. Resources shared during the meetup: Secure links FAQ FAQ: What you can access with secure links Builder Program Link QBU: Quick HIIT - Secure Links Video QBU: Quick HIITS Secure Links Supplement PDF QBU: Common URL Parameters Supplement QBU: Quick HIITS Secure Links Presentation Missed this meeting? Here’s the recording! Our next App Builder Qrew Meetup will be on Tuesday September 9 th at 12pm EST. Sam Lange, Director of Innovations at ISTA Solutions, will be sharing Dashboard design tips and examples that will make you want to update the dashboard experience for yourself and end-users! Thank you and have a great afternoon! Office Hours Cancelled August 4th to the 8th. Returning Monday the 11th. Hello! Sam Trachy's office hours is cancelled this week and return Monday the 11th. If you need help with any challenges, feel free to post a discussion question on this site, join Discord to ask a question, or open up a support case with our tech support team. Thank you! July 2025 Qrew Meetup Attendee Raffle Winners! Please congratulate the following Qrew members who won a $50 gift card for attending Qrew meetups on July 9 th and 23 rd ! Congrats to Allyson Hewitt, Allan Heaps, Erin Sullivan, and Bruce Basinger for winning the $50 gift card raffle drawing! I will reach out to each winner this week to send them their raffle prize. Thank you all for making time to attend the Qrew meetups in July! We look forward to an exciting August agenda and hope you can attend our next meetups. Re: Matching Fonts on Templates using Rich Text and Standard text Hi Hayley, You're right — in Quickbase, Rich Text fields often display differently than Standard Text fields when printed, especially in templates. That’s because Rich Text doesn’t automatically match the app’s default font. To fix it: Edit the Rich Text field In Quickbase, go to Settings > Fields, select your Rich Text field, and either edit the default value or test it in a record. Wrap the content in this HTML:Replace Arial and 12pt with the font and size used in your Standard Text fields. html<div style="font-family: Arial; font-size: 12pt;"> Your content here </div> CopyEdit Save and print your form or template The Rich Text should now match the Standard Text styling. If you’re using a print template in Quickbase, you can also apply styles at the top of the template using <style> tags Hope this gives you a place to start. Let us know if works. thx! Re: Could not parse XML input Thanks for sharing the details. I don’t know the full context, but will try to help where I think I can: The error you're seeing — Could not parse XML input: not well-formed (invalid token) — typically happens when non-standard or special characters (like †or “) are copied into a field and passed through a Pipeline step that tries to handle or convert it as XML. These characters often appear when text is copied from a rich-text source like Microsoft Word, PDFs, or emails — and they don’t translate cleanly to plain text or XML. ✅ How to Prevent This: Strip Non-UTF-8 Characters Before Sending Pipelines doesn’t currently auto-sanitize text, so if you're sending field data into an API call, XML body, or webhook, try adding a transform step to clean it. You can use a “Text Replace” step or a Code step (if using a webhook) to strip or replace problematic characters. Use a Text Cleanup Formula in Quickbase (Optional) If the field is being used in an automation regularly, consider creating a formula field that sanitizes the input: NotLeft(RichTextToText([Multi-line Field]), X) // X being character count limit if needed You may also use nested Substitute() functions to replace known bad characters with cleaner equivalents. Educate Users or Use Input Rules Since it’s a copy/paste issue: Consider adding helper text near the field like “Paste plain text only (use Ctrl+Shift+V)”. Use a form rule or text instruction field to warn about pasting from formatted documents. Let us know if you've already done these steps and what the results are. If you need further clarification, you can put in a support ticket for the technical support team to follow up directly with you. Here's how to do this: https://helpv2.quickbase.com/hc/en-us/articles/4570259530644-Get-help-from-Quickbase-Technical-Support Re: Send test notification button gone Hello! The “Send Test Notification” button has been removed from the notification configuration screen in Quickbase. This change was part of a recent platform update. 🔄 Current Workaround: To test a notification now, you’ll need to trigger it manually by: Creating or updating a record that meets the notification conditions. Making sure the recipient and rules are correctly configured (e.g., filters, recipient email field, etc.). You can speed up testing by: Temporarily removing filters or conditions in the notification rule. Creating a “test” record that clearly meets the trigger criteria. Hope this helps! If you have any feedback, feel free to share in the feedback for our product team to review. Here's how to do that: https://helpv2.quickbase.com/hc/en-us/articles/4570247477524-Give-feedback Re: Error listing for Pipelines? Thanks for sharing the screenshot! The error message 'Some record IDs specified were not found' in the table means the Pipeline is trying to update a record that doesn’t exist in the target table. That usually happens when the Upsert step is set to “Update only,” but the matching value (like a Record ID or key field) isn’t found. Here are a few steps to help resolve this: ✅ What to Check: Matching Field in the Upsert Step Open the Upsert step and confirm which field it’s using to find matching records (e.g., Record ID#, a custom key field, etc.). Make sure that value exists in the destination table. Upsert Mode Is the Upsert set to “Update only”? If so, and there’s no matching record, it will error out. If it makes sense for your use case, try switching to “Update or Add”. Review Input Values In the run history, click into the “Input” section of the Upsert step. Look at the value it’s trying to match — does that Record ID (or key) exist in the table? Let me know what you find or if you already checked these items. FYI: No Qrew Meetup Today! Next one is Wednesday 7/9/25 Hi Folks! A friendly reminder that there is not App Builders Qrew Meetup today. Our next Qrew Meetup is tomorrow Wednesday July 9th at 12pm est. General Qrew Meet Up: From Good to Great – Unlocking the Power of Reports (July 9, 12–1 PM EDT) Join Nathan Call as he shares pro tips on turning basic app data into visually engaging reports that drive smarter business decisions. Perfect for anyone looking to level up their reporting game. Here's the link to join our session tomorrow: https://quickbase.zoom.us/meeting/register/JW5Luqc_Ruqn3b7u0Hvdbw Thanks and we'll see you there!
GroupsApp Builder Qrew Are you a builder? This Qrew is for you. Come discuss all topics builder focused here.22 PostsBoston Qrew Boston based Quickbase enthusiasts connect here.13 PostsConstruction Qrew Where Qrew Members within Construction can meet and discuss industry challenges.14 PostsManufacturing Qrew A Qrew focused on Manufacturing use cases and solutions.15 PostsMobile Qrew For your mobile based use cases, there's no better space to discuss Quickbase mobile than in the Mobile Qrew.12 Posts
App Builder Qrew Are you a builder? This Qrew is for you. Come discuss all topics builder focused here.22 Posts
Construction Qrew Where Qrew Members within Construction can meet and discuss industry challenges.14 Posts
Mobile Qrew For your mobile based use cases, there's no better space to discuss Quickbase mobile than in the Mobile Qrew.12 Posts