The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I’m trying to write a formula that says. If {Inspection Date} is not blank and the number is greater than 730, then “No” or If {Inspection Date} is not blank and less than 730 then “Yes”.
I keep getting hung up with the blank fields.
This is my curr...
Ben.Young:
IF(
AND(
{Inspection Date},
{Number}
),
IF(
{Number} > 730,
"No",
IF(
{Number} < 730,
"Yes"
)
)
)
YES!! This is exactly what I needed. I was ov...