You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The workflow of passing results from a cell to a new cell in notebook provides great capability for analysis.
Currently we can pass table results with:
SELECT * FROM source(
notebook_id="N.xxx",
notebook_cell_table=Y,
notebook_cell_id="NC.ZZZ")
This requires a table to be generated in the referenced cell and can make notebook layout a bit clunky for heavy analysis. Workflow may be a summary output and calculations generated in the first cell whilst presentation and analysis in followup cells.
To enable this: An uplift of the capability would allow passing of an object from another cell and not require a table output. Something like:
Original cell: LET result_rows <= SELECT * FROM stuff
New cell to call object:
SELECT * FROM source(
notebook_id="N.xxx",
notebook_cell_object=result_rows,
notebook_cell_id="NC.ZZZ")
The text was updated successfully, but these errors were encountered:
The workflow of passing results from a cell to a new cell in notebook provides great capability for analysis.
Currently we can pass table results with:
This requires a table to be generated in the referenced cell and can make notebook layout a bit clunky for heavy analysis. Workflow may be a summary output and calculations generated in the first cell whilst presentation and analysis in followup cells.
To enable this: An uplift of the capability would allow passing of an object from another cell and not require a table output. Something like:
Original cell:
LET result_rows <= SELECT * FROM stuff
New cell to call object:
The text was updated successfully, but these errors were encountered: