# Workflow$list\_tables

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

Returns a list of tables within the workflow. Only tables created by the workflow will be included (e.g., tables within datasets that have been added to the workflow will not be present).

### **Parameters:**

**`max_results` :&#x20;*****int, default NULL***\
If specified, will only return up to max\_results tables

### **Returns:**&#x20;

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

### **Examples:**

<pre class="language-r"><code class="lang-r">workflow &#x3C;- redivis$user("imathews")$workflow("example_workflow_climate_analysis")
tables &#x3C;- workflow$list_tables()

for (table in tables){
<strong>    print(table$properties) # Properties will be populated with the table.list resource representation
</strong><strong>}
</strong></code></pre>
