Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nbedi committed Aug 30, 2016
1 parent 4de16de commit 637f433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/cookbook/excel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ IF
VLOOKUP
=======
There are two ways to get the equivalent of Excel's VLOOKUP with agate. If you're lookup source is another agate :class:`.Table`, then you'll want to use the :meth:`.Table.join` method:
There are two ways to get the equivalent of Excel's VLOOKUP with agate. If your lookup source is another agate :class:`.Table`, then you'll want to use the :meth:`.Table.join` method:
.. code-block:: python
new_table = mvp_table.join(states, 'state_abbr')
This will add all the columns from the `states` table to the `mvp_table`, where their `state_abbr` columns match.
If you're lookup source is a Python dictionary or some other object you can implement the lookup using a :class:`.Formula` computation:
If your lookup source is a Python dictionary or some other object you can implement the lookup using a :class:`.Formula` computation:
.. code-block:: python
Expand Down

0 comments on commit 637f433

Please sign in to comment.