Comment on page
DEX Grid
DEX Grid is an interactive data wrangling tool that allows you to quickly explore, search, filter, format, transform, and visualize data. This article will describe how to use Grid.
UI
Code
SQL
Using the UI:
- 1.Open the project files panel using theicon from the left sidebar.
- 2.Hover over a CSV file and selectto open the menu.
- 3.SelectQuery with Python.
- 4.
- 5.Click on the Explore button in the lower right of the cell to move to the Grid view
Using Python code:
- 1.
- 2.Enter the following code replacing <filename> with the name of your CSV file:
pd.read_csv("<filename>.csv")
- 3.Execute the cell
- 4.Click on the Explore button in the lower right of the cell to move to the Grid view
The output of a SQL query is a dataframe. To run a SQL query, see Data Connections or Query project files

Open file in Grid
Last modified 5mo ago