Level: Advanced, Version: FM 16 or later, Virtual List

Virtual List Simplified

Demo file: virtual-list-simplified.zip

Note 1: The example in today’s article/demo is intentionally very basic.
Note 2: The demo is self-populating to keep the data current, so the values you see in the screen shots will not exactly match those you encounter in the demo.

Recently I had the pleasure of discussing virtual list with Paul Jansen and Jeremy Brown on The Context podcast. One consequence of having written so much on the subject over a period of many years, is that information has been spread across many articles. Another consequence is that my thinking re: certain implementation specifics has changed over time.

At the risk of stating the obvious, there are many, many ways to skin the virtual list cat, and the purpose of today’s article is not to say “this is the best way”, or imply that other approaches are flawed, but simply to propose one particular approach you might take — especially if you are either: a) new to virtual list, or b) already using virtual list, but aren’t completely happy with your current implementation.

At any rate, my aim today is to gather some useful insights from earlier articles into a single document (with an occasional new idea thrown in as well), and some of what follows has been recycled from those earlier articles.

Some Problems Virtual List Can Help With

Here are some situations where you will run up against limitations of what FileMaker can do natively. Of course virtual list is not the only way to solve these problems, but it is worth considering when, for example, you need to…

  • Combine entities from multiple tables into a single report or portal
  • Produce a cross-tab report
  • Create dashboard interfaces
  • Summarize/aggregate the same data more than once on the same page
  • Produce a report where, if you rely on traditional FileMaker methods, you will need to define single-purpose utility fields, relationships, and/or tables

Your client can mock up any report (no matter how un-FileMaker-friendly), and virtual list will provide a general purpose tool to accommodate that request and make it a reality… including reporting challenges that would be extremely difficult to handle via standard FileMaker approaches.

A Definition of Virtual List

In reality virtual list is not one technique, but a series of related and overlapping techniques that can be employed according to a) developer preference, and b) the demands of the particular situation. However, I believe that the following paragraph is true for all virtual list implementations and can serve as bare bones definition:

Invented and popularized by Bruce Robertson, virtual list is an approach to data presentation where the data to be viewed is first loaded into one or more variables, and then rendered via unstored calculation fields in a dedicated “virtual list” table.

In my opinion a better name for this technique would be “virtual table” because I believe that more accurately conveys what it is that makes it so incredibly useful. I think of it as a magic “x-ray machine” that can be used to solve countless reporting and data visualization challenges. Nonetheless, virtual list is the name the technique is known by and in the interest of avoiding confusion, I will continue to refer to it as such.

Why Bother with Virtual List?

It’s a fair question, because on the surface virtual list may appear to be a more convoluted way to accomplish things that you already know how to do via standard FileMaker reporting techniques. And for basic reporting tasks, I would agree.

But as requirements become more challenging, virtual list enables you to generate reports (reports that would normally require the creation of multiple helper fields and/or utility relationships and/or special-purpose utility tables) without touching table schema in your main solution or making any modifications to the Relationships Graph.

Actually, I need to amend the preceding. When you use virtual list, you will rarely need to tamper with table or graph schema, but it’s best not be absolutist about such things. From time to time virtual list practitioners will find it expedient to define a helper field or a utility relationship, but that will be the exception, not the rule.

At any rate, once the virtual list table has been created and populated, the heavy lifting will be done primarily at the scripting level… and of course at the layout level, but that would be true of traditional FileMaker reporting as well — in fact virtual list layouts are often simpler than traditional FileMaker reporting layouts.

A Reporting Challenge

Here we have a simple sales table…

2019-12-30_15-25-50.png

…consisting of these fields…

2020-01-09_043647.png

…and we have been asked to produce a report that looks like this:

2020-01-02_091153.png

A Traditional Response to the Challenge

While there are of course various ways to meet this challenge, back in the “dark ages” (i.e., before virtual list) we most likely would have added these highlighted fields…

2020-01-09_043337

…more than doubling the field count in this table, and effectively “polluting” our schema, simply to produce one basic report.

And that’s just scratching the surface. Subsequent reporting requirements might include adding more columns as per the next screen shot, which, going the traditional (non-virtual-list) route would entail adding 7 more calculated fields as well as 7 additional summary fields…

2018-01-21_182930

…and why stop there? You could be asked to add rolling 36-month averages for each of the above columns (i.e., more schema tampering)… etc., etc., etc…

2018-01-22_113639

But back to our current example. Here’s the report in layout mode:

2020-01-06_14-43-25.png

Click “Report: Traditional” to see it in action.

2020-01-01_12-57-41

This script runs…

2019-12-30_15-33-18.png

The report displays…

2020-01-02_091153.png

And there you have the traditional approach.

Some Virtual List Considerations

The basic idea behind virtual list is that you create a dedicated utility table in your solution, and pre-populate it with “more records than you’ll ever need” (there are 10,000 in today’s demo). The records in this table will derive their data “virtually”, by reading it from some sort of array… typically, one or more variables.

Here’s the main idea in a nutshell:

2018-06-24_182509.png

There are various decisions to be made — for example…

Q. What method to use to locate and parse the data?

A. Because both can be useful, the demo features two methods to locate and parse the data: Multi-Finds and Fast Summaries (more on these below).

Q. How many dimensions will your array(s) have — zero, one or two?

0-1-2-d-arrays
Zero-, one- and two-dimensional arrays

A. We will generate a 2D array initially, but then parse it into multiple 1D arrays.

Q. How will the arrays be structured?

A. The 2D array will be a standard FileMaker list; each row of that list will be a 1D JSON array.

Q. You keep talking about 2D arrays — could we please see an example of what one looks like?

A. Sure. It looks like this…

2020-01-04_16-21-09.png

Q. What type of variables will we use?

what-type-of-var.png

A. To keep things simple, in this demo we will be using “script” variables as opposed to “global” variables (i.e., $vars, not $$vars).

Q. How does using $vars keep things simple?

A. They will clear themselves when the report script finishes running.

Q. Will we use PSOS (Perform Script on Server)? And if so, how much of the heavy lifting will take place server side vs. client side?

client-side-vs-server-side-2.png

A. The data will be located and parsed via a subscript, which will run server-side via PSOS if the solution is hosted. The subscript will return the above-mentioned 2D array as a result, and the calling script will parse each row of the result into a separate variable.

Q. What will these separate vars look like?

A. They will take the form of 1-dimensional JSON arrays, for example:

2020-01-01_12-37-04.png

Q. Will users be able to display multiple reports simultaneously, or interact with them in browse mode?

A. No and no. To keep things simple we will produce one report at a time and not allow browse mode interaction. I’ve found that in most cases these limitations are not a problem.

If you need to generate more than one report at a time and/or interact with reports in browse mode, see Virtual List Reporting, part 4.

Comparison of Traditional vs. Virtual List Approaches

2018-01-25_113748

2018-01-26_110930

The Virtual List Table

Let’s take a look at the virtual list table. As mentioned, it has been pre-populated with 10K records. We can add more if necessary, but 10K records are typically more than sufficient.

2020-01-02_085750.png

There is only one indexed field in this table: the ID field, which is a serial number. These ID (serial) numbers have a one-to-one correspondence with the records in the table, and there can be no gaps… since we have 10K records, the IDs are 1 through 10000, and the next serial value for ID is 10001.

Here are field defs, with the ones we care about for the purposes of this demo highlighted:

2020-01-14_211349

Here’s the definition of cell_num_r:

2020-01-06_15-29-60.png

A few things to note… 1. this is an unstored calculation, 2. it has 150 repetitions, and 3. the result type is number.

The basic idea behind having the field name begin with “cell” is that, as in a spreadsheet, a cell represents the intersection of a row and a column. In this case the row corresponds to a 1-dimensional $array[n] variable, where “n” equals the ID number of a particular record in the virtual list table… and each column within $array[n] corresponds to a particular field repetition (offset by one, since field reps start with 1, but JSON array addresses start with zero).

Q. Why are there 150 repetitions?

A. These represent potential columns and, as with rows, the aim is to have more than we’ll ever need.

Q. Why is there a “[1]” after the ID in the Let declaration?

A. Bear in mind that this is a repeating field. One aspect of a repeating field is that when it references another field, it assumes that field is also a repeater, and, unless instructed otherwise, will attempt to address the corresponding repetition in the target field whether it exists or not. Since ID is not a repeating field, we are telling every repetition of cell_num_r to target the first (and only) repetition of the ID field.

Q. Why didn’t you use the Extend function instead? E.g.,

Let ( [ i = Extend ( ID ) ; ...

A. That would be fine also. I prefer so-called array notation, i.e.,

Let ( [ i = ID[1] ; ...

…as it makes it clearer what is actually going on, but either will get the job done.

Q. What about cell_date_r and cell_text_r?

A. They have the same definition as cell_num_r, except the result type is date or text, rather than number. They are not used in today’s demo, but are included because they could likely come in handy at some point in the future.

Q. Why not simply define a bunch of individual  (non-repeating) calculated fields, one per column?

A. Some virtual list practitioners do exactly that. The big drawback in my opinion is that if you decide to revise your virtual list calculations, you are going to have to update all those individual fields. (And, depending on the type of virtual list reports you create, you might end up having to define a bunch of separate summary fields as well… see next question.)

Q. Okay, you’ve convinced me that repeaters are the way to go. What’s the story with the summary field?

A. The summary field, zz_s_cell_num_r, is defined like so:

2020-01-06_17-06-48

Since we’ve told FileMaker to summarize repetitions individually, each repetition of cell_num_r will be totaled in a corresponding repetition of zz_s_cell_num_r.

And note that we don’t have to specify the number of repetitions — they are inherited automatically from cell_num_r.

The Virtual List Report Layout

For reference, here is the so-called “traditional” report we already looked at.

2020-01-06_14-43-25.png

And here is the virtual list version.

2020-01-10_15-17-58.png

Superficially they bear a close resemblance, but note the following distinctions:

  1. The layout is based on the virtual_list table.
  2. Below the header we have a body part rather than a sub-summary.
  3. There are only two fields on this layout: cell_num_r and zz_s_cell_num_r, but each instantiation is a separate repetition thereof.

Q. Why is there a body part containing calculated fields, rather than a sub-summary containing summary fields?

A. The data has already been aggregated by the reporting script into one array row per year, so it can be rendered here in a simple body part.

Q. If I wanted to, could I instead load raw (un-aggregated) data into the 2D array, and then render it via a sub-summary with summary fields instead of a body with calc fields?

A. Absolutely, though it would negate many of the advantages of using virtual list in the first place, including blazing fast performance. It would take longer to both generate and render the 2D array, and that array would be considerably larger than the one in today’s example, but there’s no reason you couldn’t do it, provided that a) your virtual list table had as many rows, or more rows, than the 2D array, and b) if you were using PSOS, that the total size of the 2D array didn’t exceed 1M characters which is the max size for a PSOS script result (or PSOS parameter).

Q. So, it sounds like you can treat virtual list reports an awful lot like standard FileMaker reports, in terms of sub-summaries, etc?

A. Yes, if you wish, including sorting/reordering the report after it’s been generated, in which case you might appreciate this trick: Sorting On A Field Rep > 1

Q. Why are the field repetitions individually placed on the layout? It seems like it would be easier to redesign the report so you could place each field on the layout once and then specify the beginning and end rep and spread them out horizontally.

A. Distinctly placing each individual rep on the report layout…

  • Allows them to be rearranged (i.e., be ordered non-sequentially)
  • Allows them to have different widths
  • Allows different formatting to be applied to individual reps

Generating The Virtual List Report

Okay, it’s time to generate the report, but first let’s display the virtual list table.

2020-01-13_17-40-47

Next click “Report: Virtual List”

2020-01-13_17-32-29.png

The parent script asks you which “locate and parse” method you’d like to use, runs the appropriate subscript either client-side or (if possible) server side, and retrieves the 2-dimensional array from the script result.

2020-01-13_17-47-32.png

At this point $pseudoArrayJSON will contain something like this…

2020-01-04_16-21-09.png

…and the next portion of the script…

2020-01-13_18-39-11.png

…will parse the 2D pseudo-JSON array into a series of 1D JSON arrays like so:

2020-01-01_12-37-04.png

The remainder of the script will output the report…

2020-01-13_18-45-55.png

…and note that the reporting script ends with a Pause step to facilitate $var exploration via the Data Viewer and also to give you a chance to click Save As PDF or Print should you be so inclined. You will need to unpause (or break out of the script if you’re using the debugger)…

2020-01-14_11-41-00.png

…to be able to dismiss the report window. But before you do, note that what you see in the body of the report…

2020-01-13_18-53-14.png

…is also reflected in the virtual list table.

2020-01-13_18-52-23.png

The “Locate and Parse” Subscripts

Fast Summaries and Multi-Finds have been discussed, compared and contrasted at length here (Multi-Finds appear in the latter two articles only):

In today’s demo, both subscripts use JSONSetElement to build up each 1D JSON array, and Russell Watson’s amazing “insert calculated result” trick to construct the 2D array. Also in both subscripts I have attempted to strike a balance between readability and code optimization.

The Fast Summaries method requires that a “year” field be defined in the sales table because it uses it as a GetSummary break field. Multi-Finds, on the other hand, don’t use GetSummary and so do not require break fields. I mention this because if a primary goal is to avoid defining helper fields in your main data tables you may discover Multi-Finds to be less intrusive in that regard than Fast Summaries.

On the other hand, you will often find that the break field you need for Fast Summaries already exists, or that you simply prefer to work with Fast Summaries rather than Multi-Finds, so the break field issue is merely something to be aware of, not a recommendation to avoid Fast Summaries.

Array Q & A

Q. Why did you settle on this particular  array implementation?

A. I needed to be able to crunch large amounts of data server side (i.e., via PSOS) and then return potentially large results back to the client-side calling script. Furthermore, my users were interacting with multiple different reports simultaneously, each in its own window, in browse mode. By interacting, I mean sorting, scrolling, and revealing trailing grand summaries at the bottom of each window — and each of these operations needed to be as zippy as possible. See Virtual List Reporting with JSON Arrays for an in-depth exploration of how this particular methodology was arrived at (and thank you Paul Jansen for helping me clarify my thinking around this).

Q. Why JSON?

A. Using JSON functions to build your arrays ensures you won’t have problems with embedded potentially-problematical characters… not only are these characters auto-encoded (for example, embedded tabs or hard returns within your data) and auto-decoded, but it also means you don’t need to design your own array with, e.g., pipe or bullet symbols as delimiters, and take on the responsibility of ensuring those delimiters never appear as embedded characters in your data.

Q. I’m not comfortable with JSON; can you point me to an online resource?

A. Yes. Check out Thinking About JSON, part 1 and part 2.

Q. You’ve been known to advocate generating the 2D array using JSONString for the element type, but here you used JSONNumber; why was that?

A. Either would work. If you’re looking for a “set it and forget it” methodology — and I’m talking strictly about producing JSON that will be consumed by FileMaker for virtual list — you can get away with using JSONString regardless of the data type. Apart from ease of implementation, a) JSONString will return empty number fields as “”, whereas JSONNumber will return them as 0 (depending on circumstances, either might be preferable), and b) in terms of aesthetics and human readability I find this to be easier on the eyes…

2020-01-04_16-18-12.png

…than this:

2020-01-04_16-21-09

Q. Okay, so why did you go with JSONNumber in today’s article/demo?

A. Two reasons: a) since the array consists of only numbers, it seemed silly to use JSONString, and b) JSONNumber produces a smaller array, which doesn’t matter in this case, but would result in better performances when crunching large amounts of data.

Miscellanous Observations

1. If you’ve added virtual list functionality to your dev master file, and now are planning to push it into a client solution via the Data Migration Tool, after performing the migration, you will need to remember to create the records in the target virtual list table. This is an important step that is easy to overlook.

2. This isn’t restricted to virtual list reports, but if you need to generate PDF output and are struggling squeeze a lot of columns (or rows) onto a given page, and wishing you had a bit more space on your layout, check out this custom paper size trick.

3. You can do some of the heavy lifting in the virtual list table (sorting, tweaking the found set, populating additional variables) after the data has been parsed… as opposed to doing all the work prior to parsing the data.

4. It sometimes happens that you want to have your virtual lists calculations accommodate more than one type of array, using different logic depending on which report layout is being displayed.

Should you define separate virtual list tables for each type of array? Well, you could do that, but it’s not necessary. Instead you can expand the definition of cell_num_r (and also cell_text_r and cell_date_r) to be more inclusive.

Here’s an extreme example, where the developer decided that moving forward he would be using JSON, but for legacy reasons he needed to accommodate a number of other array structures, so he used the internal layout id to determine the logic. (If you’d like to pursue this, check out the “LayoutID” custom function in today’s demo.)

2020-01-13_23-13-48

Some Other Things You Could Do With Virtual List

Note: the following examples use a variety of different array structures.

1. View multiple entities from different tables in a single portal (this will be explored in an upcoming article).

2019-12-26_154835.png

2. Generate a T.O.C. (Virtual List Table of Contents).

2017-01-30_173715

3. Display images in a “lightbox” popup window…

2018-01-25_19-43-34

…or combine data from multiple tables into a single report (Virtual List on Steroids).

2020-01-16_091832

4. Display multiple reports in separate windows simultaneously and interact with them in browse mode (Virtual List Reporting, part 4).

5. Generate value lists that mirror the entry order of items in fields (Custom Field-Based Value Lists, 2-Column Magic Value Lists and 2-Column Magic Value Lists, part 2).

6. Use virtual list to help produce charts (Virtual List Charts, part 1 and part 2).

5-16-2014 4-08-08 PM

7. Generate a browse mode report, with different levels of sub-summarization depending on category (Conditional Subsummary Report in Browse Mode).

9-20-2013 10-06-48 AM

8. And finally, if you want to see a whole bunch of other virtual list reports check out Virtual List Reporting, part 1 and part 2.

2016-06-25_17-58-52

Conclusion

If you’ve been on the fence about implementing or exploring virtual list, I hope you’ve seen enough to convince you to give it a try. This is an excessively long article, even by FileMaker Hacks standards. As Blaise Pascal once wrote: “I have made this longer than usual because I have not had time to make it shorter.”

And I think that’s enough for today.

17 thoughts on “Virtual List Simplified”

  1. Thank you Paul. And also thank you for the email pointing out that my “cell” calcs could be streamlined. Demo and article have been updated accordingly.

  2. I heard the podcast and was A) happy to put voice to the text I have read so often, B) impressed with the thought process that goes into creating these articles, and C) looking forward to the next article.
    This is a home run. No two ways about it. While I have used VL and looked at ways of speeding up reporting in my solutions, I am thrilled to have a real resource that doesn’t just give you an example, but takes the time to discuss technique, implementation considerations, and “what if’s”.
    Thanks. another reason I love the FM community. My day has now officially been well spent in learning.

  3. Good Article. I have been using virtual list for a while. The use of JSON is a new twist for me and I already see a use. Thanks.

  4. Hi Kevin, as ever great work! Loving it! Say, I was just snooping around the Internet and I just discovered that your “pseudo”-JSON has got an official name – “Newline Delimited JSON” – and even a spec! http://ndjson.org/ (It’s always good to have names for things … and even better when you have somebody else to document your own ideas) ;-) See you again one fine day!

  5. Loved the podcast and this in-depth review of how you currently implement virtual lists. I attempted to download the example file but the page wasn’t found. Keep up the great work and thanks for taking the time to help all of us by doing these write-ups!

  6. Hi Kevin,
    came here to look for references to VL and I must say I’m really impressed about the roundup. Now even me can get to the point what and how VL can make our life better!
    Thanks a lot!
    Egbert

  7. Very nice. Is there an advantage of making a variable for each one dimensional array? Instead could have the cell take the the correct row from the $pseudoArray:

    Let ( [
    i = ID[1] ;
    r = Get ( CalculationRepetitionNumber ) – 1 ;
    j = GetValue ( $pseudoArrayJSON; ID[1] )
    ] ;

    JSONGetElement ( j ; r )

    ) // end let

      1. Ah I must have skipped that, I tested JSON Array VLR, v4 vs v3 and it is indeed much faster. Thank you for all the work you do.

Leave a Reply to Jesse RobertsCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.