Apr 26, 2024 01:03 AM
Hello airtable community, I have this following formula but dateadd does not display the operation in the result thank you for your feedback
Franck
IF(
{Date début package} != '', {Date début package},
IF(
{Date début expl 23} != '', {Date début expl 23},
Solved! Go to Solution.
Apr 29, 2024 10:53 PM
Hello, thank you for your feedback
I got the solution, here is the formula:
IF(AND({A} != '', {B} = ''), DATEADD({A}, {ro}, 'days'), IF(AND({A} = '', {B}! = ''), {B}, IF(AND({A} != '', {B} != ''), {A}, BLANK())))
Good day
Apr 26, 2024 06:27 AM
It looks like you need to close the quotes.
IF(
{Date début package} != ''", {Date début package},
IF(
{Date début expl 23} != ''", {Date début expl 23},
Apr 26, 2024 09:23 AM
Hello and thank you for your feedback, this does not work I am attaching a view of the table Thank you and have a good day
Apr 26, 2024 09:42 AM
What are you expecting to see as a result?
Apr 28, 2024 04:49 AM
Good morning and thanks for your help.
Here is my expectation.
If cell "A" is not empty and cell "B" is empty then cell "C" takes the value of cell "A"
and if cell "A" is empty and cell "B" is not empty, then cell "C" takes the value of cell B.
If in cell "C" there is the value of cell "A" then you must add: "dateadd", "Number of days of Activity (from Planning 2024", 'days'
https://airtable.com/appYGvpIAdS7m5Hab/shr6gqkEP8FOIlHU2
while waiting for your back have a good day
Apr 29, 2024 05:27 AM
As described:
If in cell "C" there is the value of cell "A" then you must add: "dateadd", "Number of days of Activity (from Planning 2024", 'days'
can never be true since cell "A" is a date and cell "C" is a number.
Apr 29, 2024 10:53 PM
Hello, thank you for your feedback
I got the solution, here is the formula:
IF(AND({A} != '', {B} = ''), DATEADD({A}, {ro}, 'days'), IF(AND({A} = '', {B}! = ''), {B}, IF(AND({A} != '', {B} != ''), {A}, BLANK())))
Good day
Apr 30, 2024 05:18 AM
Great, good day to you as well.