Archive for the ‘Reporting’ Category

Expose Filtering Criteria

Monday, August 31st, 2009

If you have a report with custom filtering criteria, then you may have experienced frustration with QuickBase’s terse and unhelpful displaying of this information. QuickBase will show the first term of your filtering criteria in the blue bar above the report, followed by “AND…” It’s a suspense-building technique better left to soap opera cliffhangers than web database management software.
 see full query
There’s no perfect fix for this limitation, but there is one way to get around it. Select “Print” from the mini-toolbar on the report. Leave the default option, “Print the report as a table.” Then, on the following screen, check the box labeled “include filtering criteria.” Click continue, and if a print window pops up, just cancel out of it. The window you’re left with should display your report with the full filtering criteria displayed just above it. Unfortunately, there’s no easy way to share this more informative report, but if you’re desperate for a way to show your filter criteria then it may be just what you’re looking for!

MS Word Mail Merge

Tuesday, October 7th, 2008
By Claude Von Roesgen
For those of you who know and love Microsoft Word you may have been longing to use its mail merge features with your QuickBase data. QuickBase offers Exact Forms to merge QuickBase data into an HTML template generated by MS Word, but this capability doesn’t address the requirements of printing envelopes and address labels. So what’s the easiest way to access your QuickBase data directly from Microsoft Word’s mail merge features? The answer lies in using QuickBase’s ODBC driver called QuNect ODBC for QuickBase. This ODBC driver is available from http://qunect.com for a free 30 day trial. Installation on your desktop or laptop computer is quick and easy.   Then you can jump right into Microsoft Word 2007 and click on the Mailings tab and then the Select Recipients button.

Existing List

Then click on Connect to New Data Source   Select Data Source

Then choose ODBC DSN.
Data Connection Wizard

Then choose QuickBase via QuNect.
Now you’ll need to choose your QuickBase table.

Select Table

You can edit the recipient list.
Edit Recipient List

Microsoft Word allows you to apply filtering and sorting criteria. It even allows you to find duplicates. The rest of your mail merge conforms to the standard capabilities of Microsoft Word.

Having an ODBC driver for QuickBase opens up alot of possibilities beyond mail merges in MS Word. You can use Crystal Reports or MS Access to generate highly customized reports with sophisticated headers, footers and page breaking. You can flow data into worksheets easily to apply the power of Excel charting to your QuickBase data. You can use FuzzyDupes to dedupe your contact table after importing a list from a trade show you attended. Or you can create a linked server to QuickBase in SQL Server to facilitate moving data between SQL Server and QuickBase. The possibilities are endless!

Images in QuickBase

Sunday, August 10th, 2008
Let’s face it: after staring at a report for a few minutes, all QuickBase pages begin to look the same. Fortunately, there is an easy way to add some spice to your data: images. Not only can images brighten QuickBase’s drab color scheme, but they can also allow you to tag your data in useful ways. In this issue of QuickBase Straight Up we will explore the uses of images in QuickBase.
The Basics
For starters, how do we even get images to show in QuickBase? To attach an image to a record in a table, first create a new field in the table of type “File Attachment.” Call it whatever the associated image will be, like “Image of Product.” Then edit the field, and in the Display Images section of the Properties tab, check the box called “Display .JPG, .PNG, and .GIF files as images.”

check box

Keep in mind that when you upload images, they will have to be in one of those formats in order to display on the page. Also remember that images take up more disk space than simple data fields. You can see how much space they are taking up under Customize–>Application–>Misc.–>Show Application Statistics.

Images in Reports

You probably noticed the little addendum to the “Display Images” checkbox which reads “(single record display only)”. This means that when you attach an image to a record, it will only display when you are viewing the individual record. QuickBase makes it seem as if there is no way to get a list of image thumbnails to display on a report. Fortunately, there is a solution.

First, find out what the field ID of your image attachment field is. This can be done by viewing all your fields under the Customize menu and checking the Field ID column. Next, create another new field in your table of type Formula - Text and call it something like “Image Display.” Edit this field and check the box called “Allow some HTML tags.” Then, copy and paste the following code into the formula box:

“<img width=\”50\” src=\”" & URLRoot() & “up/” & Dbid () & “/a/r” & [Record ID#] & “/e10/v0\” />”

Replace the number after e with the field ID of your file attachment field, and replace the 50 at the beginning with the width you want your thumbnails to be scaled to. Add the Image Display field to your report, and you’ve got yourself a nice list of thumbnails. You can also hide the file attachment field, because it’s rather unnecessary at this point. Thanks to forum user Gareth Lewis for this tip!

What are images good for, anyway?
If you have a large number of similar products in your database, an easy way to distinguish between them is by attaching images to the records. Let’s say, for instance, that you run a pet store. Attaching images to your records can help you distinguish the premium bird cage from the normal one, or your calico cats from your tabbies.The more records you have, the more useful the images become.

logo

With this handy trick, you won’t be confusing Fluffy and Fido anymore. Plus, you can see the full-size version of any image by clicking the View button for the associated record.

Take a look at our sample application to learn more about how images can be used in QuickBase.

Of course, there are plenty of uses for images in QuickBase even if you’re not running a pet store. What do you use images for? Let us know!