Skip to content

Filter

Let’s use a filter to spot-check the XLOOKUP formulas from the previous section.

Creating a filter

  1. Click on the icon in the movieTitle column header. screenshot
  2. Select Filter. screenshot
  3. In the new right window pane, click into the Search box. screenshot
  4. Search for toy story and select Toy Story (1995). screenshot
  5. Search for jumanji and select Jumanji (1995). screenshot
  6. In the popup search menu, click on OK. screenshot
  7. Similar to formulas, notice that we need to click Apply to run our filter. There’s also an indicator in the filter pane that there are pending updates to apply. screenshot
  8. Click Apply and look at the results. As expected, all the rows with Toy Story (1995) have movieId of 1. All the rows with Jumanji (1995) have a movieId of 2. Cross-checking those are the correct movieIds on the movie tab helps verify that the lookup worked correctly. screenshot

Filter by condition

Tabmega currently doesn’t have controls to filter by condition, such as filtering for movie titles that start with the letter R. But there is an easy workaround — create a formula column that calculates the value of interest and filter on that column. For example, we could create a column called firstLetter with the formula =LEFT(movies.title, 1) and then filter for R and r like the screenshot below. screenshot