We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitHub Issues are for bugs and feature requests.
Please do not post usage questions here. For general support from the community, see StackOverflow: http://stackoverflow.com/questions/tagged/gspread
Issues with usage questions will be closed.
For bugs please provide the following information.
Operating System: MacOS Python version: 3 gspread version: newest
So, I'm trying to make someone input a string and make python search for the string in the first column, if found then output the entire row.
The text was updated successfully, but these errors were encountered:
Hi if you want to display the entire row you need to access it. The dummy way of solving this could be:
The better way of doing this could be:
wks.range("A1:A200")
wks.range(rowcols_to_a1(found.row, found.col + nr_column_to_get))
Sorry, something went wrong.
No branches or pull requests
GitHub Issues are for bugs and feature requests.
Please do not post usage questions here. For general support from the community, see StackOverflow: http://stackoverflow.com/questions/tagged/gspread
Issues with usage questions will be closed.
For bugs please provide the following information.
Environment info
Operating System: MacOS
Python version: 3
gspread version: newest
Steps to reproduce
Stack trace or other output that would be helpful
So, I'm trying to make someone input a string and make python search for the string in the first column, if found then output the entire row.
The text was updated successfully, but these errors were encountered: