Is there a way to use Google-sheet API to read only rows with empty cell in column X ?
This is the way i read from google-sheets today but I don't see any "filter" method.
final ValueRange values = service.spreadsheets()
.values()
.get(spreadSheetId, range)
.execute();