diff --git a/docs/src/features/value-types.md b/docs/src/features/value-types.md
index 1c65d5d..27e5e4c 100644
--- a/docs/src/features/value-types.md
+++ b/docs/src/features/value-types.md
@@ -66,4 +66,8 @@ Using IronCalc, a complex number is a string of the form "1+j3".
"#N/A" => #N/A
-## Arrays
\ No newline at end of file
+## Arrays
+
+## References
+
+A reference is a pointer to a single cell or a range of cells. The reference can either be entered manually, for example "A4", or as the result of a calculation, such as the OFFSET Function or the INDIRECT Function. A reference can also be built, for example with the Colon (\:) Operator.
\ No newline at end of file
diff --git a/docs/src/functions/lookup_and_reference/column.md b/docs/src/functions/lookup_and_reference/column.md
index f670ef7..c5f6fab 100644
--- a/docs/src/functions/lookup_and_reference/column.md
+++ b/docs/src/functions/lookup_and_reference/column.md
@@ -9,10 +9,9 @@ lang: en-US
The COLUMN Function in IronCalc is a lookup & reference formula that is used to query and return the column number of a referenced Column or Cell.
## Usage
### Syntax
-**COLUMN() => column**
**COLUMN(reference) => column**
### Argument descriptions
-* *reference* ([cell](/features/value-types), [optional](/features/optional-arguments.md)). The number of the cell you wish to reference the column number of.
+* *reference* ([cell](/features/value-types#references), [optional](/features/optional-arguments.md)). The number of the cell you wish to reference the column number of.
### Additional guidance
* When referencing a range of cells, only the column number of the left most cell will be returned.
* You are also able to reference complete columns instead of individual cells.