Is it possible to limit the number of boxes in a list view?

good morning
I import a googlesheets file that has many rows, is it possible to show me only the last 10 rows in a list view?

thanks in advance

Search this board for Go Scroll Yourself for an example.

Forgive my inexperience, but I didn't see in the Go Scroll Yourself what I need to do.....

I put the block for you to see it, in the list view I see all the rows of the google sheets and I only want to see the last 10.

thanks for your help

You probably could use gviz together with the limit clause, see

and Query Language Reference (Version 0.7)  |  Charts  |  Google for Developers

Taifun

1 Like

Or if you want to call back all the data for other purposes, something like this:

Thank you very much, it was difficult for me but I finally achieved the goal, I was also able to filter by word, great

great!
what about providing a screenshot of your solution to help others with similar problems in the future?
Taifun

This filters by the page, by row A and also by the phrase (interv: BARC)

/gviz/tq?tqx=out:csv&sheet=ORIGEN&tq=SELECT+A+where+A+contains+%27(Interv:%20BARC)%27

limit 100 limits to 100 the number of matches that will be displayed in the list view

1 Like

You should UriEncode the entire query

e.g. SELECT ... limit 100

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.