Excel créer un hyperlien vers la cellule correspondante

# Basic syntax:
=HYPERLINK(CELL("address", INDEX(B:B, MATCH(A1, B:B, 0))), "Link_name")
# Where this will create a link called "Link_name" to the first cell in column
#	B that matches the text in cell A1.
# Note, this approach avoids the issue of having all hyperlink references
#	"broken" when you add a row or column because CELL returns the correct
#	cell address to the HYPERLINK function
# Note, unlike the source I link to, I needed to remove the "#"& in front of
#	the CELL function to get this to work.
Charles-Alexandre Roy