Hi every one, Need Help!!! I try to make a ...

Hi every one,

Need Help!!!

I try to make a hyperlink to google search which search the value of couple of cells from same row in google.

it is working fine on google sheet and here is the format:

=if(Isblank(A5)," ",HYPERLINK("https://www.google.com/search?hl=en&q="&A5&" โ€œ&E5&โ€ "&G5,โ€œGoogle Searchโ€))

but when i click on appsheet link it give me [http://google%20search/]

the column property is follow:

Type = Url LaunchExternal = ture IsHyperlink = ture Read-Only Required Searchable Spreadsheet formula = if(Isblank(RC[-7])," ",HYPERLINK("https://www.google.com/search?hl=en&q="&RC[-7]&" โ€œ&RC[-3]&โ€ "&RC[-1],โ€œGoogle Searchโ€))

What I have done wrong?

your help is much appreciated.

0 4 343
4 REPLIES 4

Why in the world did you do this using a spreadsheet formula?

As an AppSheet formula suitable for use as the app formula of a virtual column:

=IF(ISBLANK([A]), โ€œโ€, HYPERLINK((โ€œhttps://www.google.com/search?hl=en&q=โ€ & ENCODEURL([A] & " " & [E] & " " & [G])), โ€œGoogle Searchโ€))

Replace A, E, and G with the appropriate AppSheet table column names.

Thanks Steve Coile I tried couple of way but still got the same problem I used the column names as follow:

=if(Isblank(RC[Manufacturer Part Nr])," โ€œ,HYPERLINK(โ€œhttps://www.google.com/search?hl=en&q=โ€&RC[Manufacturer Part Nr]&โ€ โ€œ&RC[Model]&โ€ "&RC[Part Name],โ€œGoogle Searchโ€))

it didnโ€™t work then I changed to this: = if(Isblank(RC[7])," ",HYPERLINK("https://www.google.com/search?hl=en&q="&RC[7]&" โ€œ&RC[3]&โ€ "&RC[1],โ€œGoogle Searchโ€))

still same problem

Iโ€™m afraid Iโ€™m not familiar with using spreadsheet formulas within AppSheet, so I canโ€™t help you.

Top Labels in this Space