seems like a simple enough question, but I couldn't find the answer here. I've used StackOverflow sooo much already the last year and finally decided to ask a question myself, I'm sure someone knows the answer!
The situation: I have a column of values with unique filenames and if they were processed or not. Eg: "20160810_123_a.xml processed" or "20160810_123_b.xml failed" The length of the filename changes so it's not static. I'm using these values in a different report and would like only values of 'Processed' or 'Failed', depending on what was in the original content.
I'm guessing I need some kind of If loop, which would do something like this: In range I:I, if value of the cell contains "processed", replace entire cell with "Processed". If the value of the cell contains "failed", replace entire cell with "Failed.
Thanks in advance!