I am using python to create a simple utility for an organisation at university. The python script will search an excel document for a name and then using the row value for that name will return information about the member they searched for.
I am using openpyxl
to do this. I have read through the documentation and understand reading cells and worksheets etc. including from a range of cells, rows or columns.
I am unsure how I would go about using this to search for a name in the first column.
I am thinking of using:
name = raw_input('insert name > ')
and then iterating through the cells in the first column to search for name
and then using string manipulated to get the row value for that cell.
However looking through the docs I can't find actually find any way of searching for cell content.
Can anybodyshed some light on this for me?