Spreadsheet Formula

NCD
Silver 2
Silver 2

I'm trying to put this in my AppSheet "Spreadsheet formula".

=CONCATENATE(index(split(QUERY(IMPORTDATA("http://zipcloud.ibsnet.co.jp/api/search?zipcode="&E36),"select * where Col1 like 'ad%'"),""""),,2))

But I don't want it to look at E36 every time, instead I want it to be the left cell every time.

How do I do this?

Solved Solved
0 4 232
1 ACCEPTED SOLUTION

INDIRECT(ADDRESS(ROW(), COLUMN() - 1))

gives you the content of the cell left to the cell containing the formula.

Try replacing E36 with this..

View solution in original post

4 REPLIES 4

INDIRECT(ADDRESS(ROW(), COLUMN() - 1))

gives you the content of the cell left to the cell containing the formula.

Try replacing E36 with this..

Thank you it worked perfectly!

The Spreadsheet formula must adhere to certain formations.  I believe what you have written is not supported.  Review the first article below for more details.

To understand more about the Spreadsheet Formula property here are some articles:

https://help.appsheet.com/en/articles/2926968-issues-with-google-sheets-formulas

https://help.appsheet.com/en/articles/961393-spreadsheet-formulas

https://help.appsheet.com/en/articles/3326638-mismatched-spreadsheet-formulas

 

 

Thanks @WillowMobileSys 

I was thinking purely in terms of Spreadsheet functionality without considering AppSheet compatibility.

Top Labels in this Space