Earofcorn

New Member
Joined
Apr 13, 2015
Messages
1
I have 2 lists. One contains locations and the other contains items. Each item can be found in a few specific locations, and each location contains a few specific items. I'd like to create a user-friendly document where someone can mouse over a location and see a list of the items there OR mouse over an item to see a list of the locations it can be found at. This is a long list so how can I do this using excel's functions?

As a side note: I've seen lists where when a cursor hovers over an item in one column, the items it corresponds to in another column are highlighted, I'd also like to know how that's done.
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
This is done by using macro and formula.
on the macro vba side, create a module and put this code
Code:
Public Function Hover()
 ActiveSheet.Range("A1").Value = "you hover a cell"
'put code for getting the other column's value
End Function
then on the formula side (the cell that you want to enable it to hover)
Code:
=IFERROR(HYPERLINK(Hover(),""), "ItemA")

Hope it helps
 
Upvote 0

Forum statistics

Threads
1,215,051
Messages
6,122,871
Members
449,097
Latest member
dbomb1414

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