I hope everyone is having a great Friday.
I am trying to create a dynamic hyperlink which takes the searched name in (G2) as an input and allow me to jump to that specific row where the searched name is located (in this example the hyperlink should jump to cell B8).
Based on some internet search i found something similar which can be applied in excel but i don't think it's working on google sheets. Please find below the function that i applied in (I2)
=hyperlink("#"&Cell("address",index(Sheet1!B5:B9,MATCH(G2,Sheet!B5:B9,0))),"Click here to move to row")
Unfortunately it isn't working, and it isn't even shown as a hyperlink (blue underlined text).Can you guys help me understand more what i did wrong, and if there is a better way to do this task.
Let me give another example, Lets say i picked Nishant from the dropdown list in G2,
I want that when i click on I2 the link would make me jump to B9 in this example.
Thank you for your help.
Appreciate it.
Try
=hyperlink("#gid=1860191576&range=B"&MATCH(G2, B5:B9,0)+4,"Click here to move to row")
replace 1860191576 by your grid id
Related
I was wondering if someone could help me create a drop-down list in a single cell on google sheets that only displays the months names but also keeps their values
Until now I’ve been able to create the list but when I go to select the month it changes into day-month-year form
Thank you,
Gabe
The way i understood your question, the easiest way to do it would be to just use data validaion: Select cell you want and in toolbar menu go Data>Data Validation>List of items and just paste this January,February,March,April,May,june,July,August,September,October,November,December
Then format cell as plain text: Select cell you want and in toolbar menu go Format>Number>Plain Text
Hope this is what you need.
Hi helpful and professional people of Stack overflow. I seek help for a solution for a attendance marking spread sheet.
So I have made a column of 10 rows with check boxes within each cell.
How should proceed to allow(or is it possible) for the following to happen:
When the checkbox is ticked( cell value = true ), the cell beside it on the right will be greyed out in colour.
When the checkbox is not ticked( cell value = false ), the cell beside it on the right will come out with a dropdown list to choose some options.
Thank you in advance if there is a solution for this.
Assuming that your checkboxes are in column C and drop-down lists in column D, use conditional formatting in column D to solve the first question. You would need a custom formula rule like =C2 where C2 refers to the topmost checkbox cell.
The easiest way to handle the drop-down lists would be to let them always sit in place, and trust that graying out is sufficient to show the user that a drop-down list is currently not available.
If that is not a viable solution for you, use an onEdit(e) function to create a drop-down list dynamically when a checkbox is ticked, and remove a drop-down list when a checkbox is unticked. See the createDropDownList_ script for sample code.
I'm working with Excel 2010. What I'm trying to accomplish is creating a hyperlink which finds a cell containing some specific text, and simply brings the user to that cell. It would be simple if the cell stayed in the same position in the column, but more data is always being added to that column, and the cell location which contains the text keeps changing.
Although I've seen several articles that I suspect might address the problem, they were so involved that I couldn't be certain they were what I was looking for, since I've been away from this for years, and am relearning it all from scratch.
Thanks for your time and attention.
Say we want to go to "treasure" in column D:
=HYPERLINK("#d" & MATCH("treasure",D:D,0),"jump to treasure")
This can be modified if you did not know which column to search!
I have a google sheet that has multiple columns that I am marking Yes or No to keep track of certain details for a property. When all cells in each column are marked as "Yes" I would like to highlight (change the background color) for that entire row. I created a sample spreadsheet of what I am trying to do.
https://docs.google.com/spreadsheets/d/1icbFXzas-VBnMsu2gjPd9avW0PN9ii3v7jPRMpp3kY4/edit?usp=sharing
Figured it out and posting it in case someone else needs it. I ended up using this conditional formula:
=AND(ARRAYFORMULA(A$2={A$3:A$37}))
It worked for all the columns. I got lucky, but would love for someone to explain why it works :-)
is there a way in google spreadsheet to create an anchor text in order to jump from one row to another with a simple click without page reloading?
I'm not able to find a way...
Thank you
This is an old question, but I seem to have found a solution:
Select the Set of Cells you want to link to (Left-click + Drag)
Right-Click the Selected Cells ==> Select "Get link to this range"
The Sheet Link will now be copied to your clipboard and can now be accessed by anybody who has access to the sheet.