From ba9959b6af88009c7d24345af44b437ddf08d6c4 Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Tue, 9 Mar 2021 16:36:10 -0500 Subject: [PATCH] (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 --- sandbox/grist/functions/lookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/grist/functions/lookup.py b/sandbox/grist/functions/lookup.py index ffd409d6..55a4b4a3 100644 --- a/sandbox/grist/functions/lookup.py +++ b/sandbox/grist/functions/lookup.py @@ -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, `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`. `VLOOKUP` is exactly quivalent to `table.lookupOne(**field_value_pairs)`. See