J Blizzard
New Member
- Joined
- Dec 23, 2019
- Messages
- 20
- Office Version
- 365
- Platform
- Windows
I'm using Excel 365 with Windows 10. I want to create links inside my excel file and am having a lot of trouble combining different formulas inside one cell to make a link.
I have one workbook named "Trade Log" with two worksheets named "Trade Log" and "Screenshots." In the Trade Log worksheet I have details about different stock market trades I've made, and I use the Screenshots worksheet to save one or more screenshots of each trade. I want to provide a clickable hyperlink from screenshot #10 in Screenshots to trade #10 in Trade Log, for example. So just a link to click back and forth between any given trade.
The Screenshots sheet has two areas that I will be dealing with. Column B will have a number denoting what number trade it is, and Column C will have a link that takes you back to the corresponding trade in the Trade Log sheet.
A manually-typed example of the Screenshots worksheet:
For my first trade, I will paste a screenshot in cell A1, type "1" in cell B4, and have a link in cell C5 to take me to Trade Log worksheet, cell A3.
For my 2nd trade, I will paste a screenshot in cell A29, type "2" in cell B31, and have a link in cell C31 to take me to Trade Log worksheet, cell A4.
For my 3rd trade, I will paste a screenshot in cell A56, type "3" in cell B58, and have a link in cell C58 to take me to Trade Log worksheet, cell A5.
I want to make a hyperlink to the Trade Log sheet in the same workbook, absolute reference column A, relative reference consisting of the number typed in the neighboring cell + 2.
This is the link I have now but it returns the error, "Reference isn't valid."
I've tried a lot of combinations of &, +, and lots of quotes and parenthesis but cannot seem to figure this one out and would appreciate some help with it.
Also, I would love to have this be more automated so that I can paste a screenshot, type the trade #, and have a link automatically appear next to it. My first thought is to have column C be full of IF(NOT(ISBLANK()))'s for thousands of cells so that every time I type a number in column B, a link pops up with the correct row reference to the Trade Log sheet. Is this a viable solution? Will this cause excel to make thousands of IF checks every time I update a cell? Is there a better solution?
Thanks for the help, I really appreciate it.
I have one workbook named "Trade Log" with two worksheets named "Trade Log" and "Screenshots." In the Trade Log worksheet I have details about different stock market trades I've made, and I use the Screenshots worksheet to save one or more screenshots of each trade. I want to provide a clickable hyperlink from screenshot #10 in Screenshots to trade #10 in Trade Log, for example. So just a link to click back and forth between any given trade.
The Screenshots sheet has two areas that I will be dealing with. Column B will have a number denoting what number trade it is, and Column C will have a link that takes you back to the corresponding trade in the Trade Log sheet.
A manually-typed example of the Screenshots worksheet:
For my first trade, I will paste a screenshot in cell A1, type "1" in cell B4, and have a link in cell C5 to take me to Trade Log worksheet, cell A3.
For my 2nd trade, I will paste a screenshot in cell A29, type "2" in cell B31, and have a link in cell C31 to take me to Trade Log worksheet, cell A4.
For my 3rd trade, I will paste a screenshot in cell A56, type "3" in cell B58, and have a link in cell C58 to take me to Trade Log worksheet, cell A5.
I want to make a hyperlink to the Trade Log sheet in the same workbook, absolute reference column A, relative reference consisting of the number typed in the neighboring cell + 2.
This is the link I have now but it returns the error, "Reference isn't valid."
=HYPERLINK("#'Trade Log'!INDIRECT(ADDRESS($B4+2,1,3))","Go")
I've tried a lot of combinations of &, +, and lots of quotes and parenthesis but cannot seem to figure this one out and would appreciate some help with it.
Also, I would love to have this be more automated so that I can paste a screenshot, type the trade #, and have a link automatically appear next to it. My first thought is to have column C be full of IF(NOT(ISBLANK()))'s for thousands of cells so that every time I type a number in column B, a link pops up with the correct row reference to the Trade Log sheet. Is this a viable solution? Will this cause excel to make thousands of IF checks every time I update a cell? Is there a better solution?
Thanks for the help, I really appreciate it.