Forum Discussion
FarmBio2909
Apr 28, 2023Copper Contributor
Nested IF AND arguments
I'm trying to write a nested IF formula that can return text values based on multiple arguments. I have a column with dates and I need to know if the date is today, within the next week or within...
- Apr 28, 2023
With nested IF value_if_false is next IF. In your case like
=IF( AND($J79 = TODAY(), $H79 = "With client for approval"), "Due today", IF( AND( $J79 - TODAY() <= 7, $H79 = "With client for approval" ), "Due this week", "" ) )
SergeiBaklan
Apr 28, 2023Diamond Contributor
With nested IF value_if_false is next IF. In your case like
=IF(
AND($J79 = TODAY(), $H79 = "With client for approval"),
"Due today",
IF(
AND(
$J79 - TODAY() <= 7,
$H79 = "With client for approval"
),
"Due this week",
""
)
)FarmBio2909
Apr 28, 2023Copper Contributor
SergeiBaklan Fantastic, thanks so much - got it!
- SergeiBaklanApr 28, 2023Diamond Contributor
FarmBio2909 , glad to help