Query Binding to a custom parameter in a view

Yes, because your dataset is empty.

edit:
If you need to handle empty datasets:

if(len({view.custom.dataset}),
	{view.custom.dataset}[x],
	null
)

This will return the cell at index x if the dataset is not empty, and null if it's empty.

4 Likes