Hi again. I am sorry for asking a lot. Kinda new learner here.
I want to ask about some of math or logic in Glide Table. I will start with this :
How can we calculate age in the Glide Table? Let say, I put date of birth in column C, and to calculate in the excel, i will just put the math “=(C-TODAY())/360”
I want to make condition where I need several columns to be filled (not empty) to get the result COMPLETED. For example, column A, B, C should be not empty.
In Excel, I will type =IF(AND(A=is not empty,B=is not empty,C=is not empty),“COMPLETED”,“INCOMPLETE”)
(i tried to type star sign, but it changes the star character in this conversation)
How can I make this possible in Glide Table? I can’t find the IF function in Glide Table can facilitate AND & OR (joining 2 or more conditions to get 1 result).
Apologize. I mean, I think the THEN can be filled with different outcomes in each IF. In your example, you can fill THEN for A like “Paris”, and for B, the THEN will be “London”. Else will be “Tokyo”.
If A is true, but B is not true, is the result will be “Tokyo”? Or “Paris”?
In row 1 and 3, even though the column A is not empty (false), the result in column D is “Not Completed” (true). Is the condition B and C calculated here?
Keep in mind that it is giving a separate result for each row, based on the data in that row.
For Row 1:
– A is not empty (first condition fails)
– B is empty (second condition passes - result is “Not Completed”)
For Row 2:
– A is not empty (first condition fails)
– B is not empty (second condition fails)
– C is not empty (third condition fails)
– As all 3 conditions fail, the ELSE is returned - result is “Conpleted”
For Row 3:
– A is not empty (first condition fails)
– B is not empty (second condition fails)
– C is empty (third condition passes - result is “Not Completed”)