(core) Fix broken markdown link in the doc-comment of VLOOKUP

Test Plan: No code changes

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2752
This commit is contained in:
Dmitry S 2021-03-09 16:36:10 -05:00
parent 2b71cce88b
commit ba9959b6af

View File

@ -80,7 +80,7 @@ def VLOOKUP(table, **field_value_pairs):
The returned object is a record whose fields are available using `.field` syntax. For example, The returned object is a record whose fields are available using `.field` syntax. For example,
`VLOOKUP(Employees, EmployeeID=$EmpID).Salary`. `VLOOKUP(Employees, EmployeeID=$EmpID).Salary`.
Note that `VLOOKUP` isn't commonly needed in Grist, since [Reference columns](col-refs) are the Note that `VLOOKUP` isn't commonly needed in Grist, since [Reference columns](col-refs.md) are the
best way to link data between tables, and allow simple efficient usage such as `$Person.Age`. best way to link data between tables, and allow simple efficient usage such as `$Person.Age`.
`VLOOKUP` is exactly quivalent to `table.lookupOne(**field_value_pairs)`. See `VLOOKUP` is exactly quivalent to `table.lookupOne(**field_value_pairs)`. See