Adding a "go to" to a formula? Possible

BB38

New Member
Joined
Jan 16, 2021
Messages
39
Office Version
  1. 365
Platform
  1. Windows
I am using the following formula to allow the user to input a name and receive output in the form of row number(s)

=TEXTJOIN(", ",,FILTER(ROW(Table2[Investor]),LEFT(Table2[Investor],LEN(F8))=F8))

is it possible to add a "go to" view function that then sends the viewer to the first row of the spreadsheet that the output cell provides?
 
I was able to make it work, just had to figure out where to put in the -10.

Solved!

=HYPERLINK("#"&CELL("address",INDEX(Table2[Investor],LEFT(G8, FIND(",",G8&",")-1)-10)),"Goto")

Thank you!
 
Upvote 0

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
A slightly safer way would be
Excel Formula:
=HYPERLINK("#"&CELL("address",INDEX(Table2[Investor],LEFT(G8, FIND(",",G8&",")-1)-ROW(Table2[[#Headers],[Investor]]))),"Goto")
That way if somebody inserts or deletes rows above the table, it should still work.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,004
Messages
6,122,659
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top