Hi all,

I am writing a python script to parse certain text in cells in a spreadsheet.

I want to pass data in columns a,b,c one row at a time to my script, let the script parse the text then write to column d before moving onto the next row.

Will this be possible to do? How would I go about calling the script?
Can I make excel wait until my script has done its thing before calling the script again with the next row?


The script would ideally accept the text passed to it at the command line like this..

Myscript.py column a column b column c


Many thanks for any help.