How to google sheets hyperlink 'cell text' as formula - google-sheets

Is it possible somehow to make a calculation in 'cell text' of Google sheets HYPERLINK formula?
This is not working:
=HYPERLINK("link.com","52.70*1.5")
I have already checked the internet and on this website for any available solution, but didn't find anything similar...

Just remove the double quotes to the label maybe
=HYPERLINK("link.com",52.7*1.5)

Related

Very Specific Filtering in Google Sheets

I am making a calculator in Google sheets and I would like to find a formula or script or something that will allow me to read the value of a certain square and add the formula "=sum(C5:C9)" or "=product(C5:C9)" or whichever depending on what the person puts in C4. Not sure if this is possible in google sheets (without custom code), but if it is, that would be great!
try:
=IF(C4="*"; PRODUCT(C5:C9); SUM(C5:C9))

Google sheets formula to add order quantities over several sheets

here is a link to my google sheet for reference: [https://docs.google.com/spreadsheets/d/1tUlqB2tsH4xEsxYiMv1CiUIY3hhLGpM-1G8eWOyZPWk/edit?usp=sharing]
What I am trying to do is in the "Clients" sheet there is the column "Orders". Here I want a count of all the times that "Client ID" has been used across all the other pages. Any tips on what formula to use? Thanks
I would use:
={"Orders";ArrayFormula(IF(A2:A="","",COUNTIF({Jun!B:B;July!B:B;August!B:B;Sept!B:B}, A2:A)))}
from what i saw you only needed to add the ARRAYFORMULA to your formula, it should end up like this: =ArrayFormula(COUNTIF({Jun!B:B;July!B:B;August!B:B;Sept!B:B},A2)).
But, even after adding it, to me at least, the results didn't change. Could you verify and make sure there's a problem with the results the SUMIFS is giving you?
If you find anything that's broken I'll try and help.

Google sheet - simple importxml formula does not work

I have tried the below simple importxml formula in a cell
=importxml("https://en.wikipedia.org/wiki/List_of_T_postal_codes_of_Canada", "//td")
But this always returns a "formula parse error" message.
I don't get it, this example is soo simple. It should work fine.
I would make the assumption that you are from Canada. Canada (French) locale uses ; instead of , so most likely it has to do with the spreadsheet locale.
Replace , with ;:
=importxml("https://en.wikipedia.org/wiki/List_of_T_postal_codes_of_Canada"; "//td")
Another solution would be to change the locale settings, please read more here on how to do that.

Conditional formatting with data validation + named range from other sheet in google sheets

I'm really struggling with getting my conditional formatting to work. I've seen a couple of posts online plus here around using INDIRECT to reference the desired cell in a different sheet for a custom formula in my conditional format rule, but it's not working. Wondering if someone can review the sheet and see what I am doing wrong.
In my sheet, you will see exactly what I've coded and I've annotated the desired behavior.
https://docs.google.com/spreadsheets/d/1keGEuaxhjoXJl9TrKWgkAyh4ut22pMmfnTsDranksY0/edit#gid=0
you miss equal sign and double quotes.
blue formula:
=VLOOKUP($A2,{INDIRECT("WarLinesValuesTypes")},2,0)="Defense"
red formula:
=VLOOKUP($A2,{INDIRECT("WarLinesValuesTypes")},2,0)="Offense"

find(CTRL+F) in google spreadsheet

I was searching for the some word which contains 2 bytes character in google spreadsheet. I used CTRL+F to find string in the cell.
Spreadsheet contains fallowing values.
AlianĂ 
Aliana
I search the sheet with Aliana/AlianĂ  I got 2 as search count.
I think it should return count as 1 for specific search.
Can any one help me to find why google spreadsheet work link this?
For reference I am attaching Spreadsheet
You can just specify to "Match case" in the advanced search panel.
You can access it on the 3 dots at the right of the search input box when you Ctrl+F

Resources