Currently HttpStatus
writes both of status code and meaning into the same cell, which is personally for me unhandy to work with. Previously i've used to cut the output, paste it into the Notepad++, add the tab after first three signs and paste everything back into Excel, where i get so the numeric status code in one column and status description in the next column.
Then i thought i do the same with an Excel formula - and there begins the magic. There are two formulas for this:
-
=LEFT((HttpStatus(A2)),3)
- this gets the numeric status code into the cell -
=MID((HttpStatus(A2)),5,666)
- this gets the status description into the next cell. 666 is just a BIG number to get the whole description (because the description contains the URL and can be very long).
PS: would be very nice to have such checkbox in the settings, like split status code
.