Google Spreadsheets, Insert a cell value to another cell - google-sheets

I don't know anything about scripts so I would prefer a function.
I have a table like this:
a1
b1
c1
a2
b2
c2
If "a1" = 1 a2 = today's date.
For example:
if I write to a1 cell a "1" it will "transform" into today's date,
if anything else nothing happens.

You can simply put this formula in A2 cell :
=if(A1=1,TODAY(),"")

Related

Use specific syntax with Sheets

I have this:
So now, what I want is this logic but I don't write everytime in each cellul :
In B3 : =SI(A3>B1;1;0)
In C3 : =SI(A3>C1;1;0)
In D3 : =SI(A3>D1;1;0)
In B4 : =SI(A4>B1;1;0)
In C4 : =SI(A4>C1;1;0)
In D4 : =SI(A4>D1;1;0)
I just need to retrieve each cellul column A and compare to each cellul ligne 1
Someone can help me
use:
=INDEX(IF(A2:A5>B1:D1; 1; 0))
Try this:
=IF($A3>B2,1,0)
Once the absolute reference is set just drag the formula to the whole row:
Once done you just need to drag the formula down and it will be applied as you like to all the remaining cells:

Google Sheet cell value does not match

I am trying to compare to cell in google sheet. Both the cell contains Value "Saturday".
Cell A1 = TEXT(WEEKDAY(N1),"dddd") value is "Saturday"
Cell A2 = =B2 value is "Saturday"
but when I compare both =IF(A1=A2,"TRUE","FALSE") Result is FALSE. I tried changing both cell to plain text but it did not work. Any solution?

Combine data from multiple cell in one cell with text

I have a row A with 200 text entries.
A1 = "A1value"
A2 = "A2value"
A3 = "A3value"
...
I want to dynamicaly display in a single cell (text format) : ga=A1value,ga=A2value,ga=A3value, [...] ga=A200value etc...
use join function:
=JOIN(",ga=", A1:A3)
for some regions semicolon is used:
=JOIN(",ga="; A1:A3)
next step: add first "ga=" manually:
="ga="&JOIN(",ga=", A1:A3)

Google spreadsheet: use value as row number

I have a return value from a function in cell A1. Let's say it's 51.
How can I use this value as a row number. I don't want 51 in A1 but instead I want the value from cell A51 in cell A1.
Is there a formula?
Use indirect:
= indirect ("A"& 51)

Google spreadsheet cell reference from value of another cell

This is the scenario:
In cell A1 I have value "12".
In cell B1 I enter value "1".
In cell C1 I want to have value of Column "A" and row defined in cell B1.
How can I display the value "12"?
=INDIRECT("A"&B1)
Help page for INDIRECT function: https://support.google.com/drive/answer/3093377?hl=en-GB

Resources