Gsheet - Split Values of Cell [closed] - google-sheets

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm using
=importjson to import this API ("https://bitmax.io/api/pro/v1/depth?symbol=RUNE/USDT")
in a cell of Gsheet documents.
The result is this:
Is there a way to split the value in a cell in this way?
This way to format the result of API call

try this:
=ARRAYFORMULA(VLOOKUP("X";{"X"\SPLIT(SUBSTITUTE(SUBSTITUTE(G7;",";"|");".";",");"|")};SEQUENCE(COLUMNS(SPLIT(SUBSTITUTE(SUBSTITUTE(G7;",";"|");".";",");"|"))/2;2;2);0))
If that doesn't work, it'd help if you shared a sample sheet.

Related

Array List Help Cheat Engine [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I am looking for a way to make a array list in cheat engine does anyone know how to make one? I have attempted to make scripts to no success.
Use Lua's table type to create arrays/lists
local myPetList = {"dog", "cat", "bird"}

How to apply a formula on a rage "A3:A"? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I want to copy the same formula to all cells in the range "A3:A".
Do I have to use Apps script or can this be done via the UI?
Try using an Arrayformula. You can see the documentation here.
For example:=ARRAYFORMULA(A1:A+B1:B)
This will add each value in A to each value in B like A1+B1, A2+B2, A3+B3, and so on.
If you post the formula you are trying to use, I may be able to adapt it using Arrayformula.

Selecting cell based on another cell's value [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I don't know if this is possible, although I looked and did not find a solution to this:
=PV!A(Results!c2)
I have a field PV which has a lot of values in it on column A.
Results, has results from a race. I am trying to get the cell in column A depending on what the value is in Results. Is this possible?
Use INDEX:
=INDEX(PV!A:A,Results!c2)

Json Array in tableview [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I want to ask if i have 5 json url link,
like this:
`"www.testing.com/apps/star_json.php?code=1"`
`"www.testing.com/apps/star_json.php?code=2"`
`"www.testing.com/apps/star_json.php?code=3"`
`"www.testing.com/apps/star_json.php?code=4"`
`"www.testing.com/apps/star_json.php?code=5"`
how can i fixed "www.testing.com/apps/star_json.php" this path and only write a different code in my different getDataURL?
Maybe you mean how to concat strings?
for each code
[NSString stringWithFormat:#"www.testing.com/apps/star_json.php?code=%d", code]`
But this is an embarassingly badly posed question :D

Need to design tree chart in my iOS app [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have to design tree chart like
Google tree map chart
I have to also know about proper json which will design this chart in proper format
Thanks
I think TreeMapKit for iOS does this:
https://www.cocoacontrols.com/controls/treemapkit

Resources