# Workflow$table

### Workflow$<mark style="color:purple;">table</mark>(*table\_reference*) → [Table](https://docs.redivis.com/api/client-libraries/redivis-r/reference/table)

Create a reference to the table within a workflow.

### **Parameters:**

**`table_reference` :&#x20;*****str*** \
The [scoped reference of the table](https://docs.redivis.com/api/referencing-resources), unique within the workflow.&#x20;

### **Returns:**

[**Table**](https://docs.redivis.com/api/client-libraries/redivis-r/reference/table)

### Examples

```r
workflow <- redivis$user("imathews")$workflow("example_workflow_climate_analysis")

table <- workflow$table('compute_annual_precipitation_output:m7k8')
table$to_tibble()
# 	id	        year	    annual_precip
# 0	CA0023026HN	2003	    2925.0
# ...
```
