I'm hoping someone can help me with an Excel formula to extract two characters after specific text in a string.
Specifically, the cell contains the following text
Every 2 Hours Power:1 Sail:0 SWC:3 BCR:0 CJC:0 CU:0 CSC:0
Note that all cells are slightly different so I can't just use the text to columns delimiter. I need the formula to return the two characters after the specific text "Power:". From the example above, I want the cell to read "1" after the text "Power:".
I've tried various combinations of Right, Left, Len, Search, and am not having success. Thanks in advance!


=MID(A1,SEARCH("Power:",A1)+6,2)