Selecting cell based on another cell's value [closed] - google-sheets

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)

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.

Gsheet - Split Values of Cell [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 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.

How to fetch data and show in Tgrid in delphi [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 3 years ago.
Improve this question
I'm working on an application where i want to fetch data from database and show it in Tgrid. Since it doesn't have a DataSource Property, i can't figure out a way how to add item in Tgrid.
Use TDBGrid instead of TGrid. Otherwise you have to insert manually the data from your table into the grid.

Saving font to postgre [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 5 years ago.
Improve this question
I am gonna have lots of fonts edited by users and wanna save font data to database.
Now, the first problem I have met is what should be the column field type.
:String, :integer, ? or :myFONT?
Is it possible , if possible then how?
Assuming you are talking about storing the file which represents a font, you can store it as binary data or type bytea
Details on how it's done:
https://jdbc.postgresql.org/documentation/84/binary-data.html

Resources