So specifically I'm writing a test tracking document, when a particular test case fails I want to be able to enter it's bug number into a field and then have that field produce a URL to link to the bug in our database.
Currently I am having to use 2 columns to do this
so J
contains the value entered and K
produces the URL link.
=HYPERLINK("http://www.blah.com/edititem.aspx?id="&J1&"&type=defects&full_edit=true&project_id=0&step_id=0", J1)
This formula is in cell K1
and produces the result I want however in terms of just wanting it to be perfect I'd like to know if it's possible to have the formula in the cell so that when you type '10
' for bug 10 it then creates the url
in the cell you just typed 10 into, rather than the cell next to it?
This would obviously need to be copied down across many rows for each test case in the spreadsheet.