Sample Google Sheet:
| NAME | AGE | COLOR |
|---|---|---|
| Robert | 22 | Red |
| John | 21 | Blue |
| Ann | 20 | Purple |
| John | 21 | Green |
Call with URL: http://{URL to Google Sheet above}/parameters
What parameters should I use here to filter by NAME = John and get the result below?
Result: Google sheet is open, but filtered as follows:
| NAME | AGE | COLOR |
|---|---|---|
| John | 21 | Blue |
| John | 21 | Green |