Hi,
I’ve been working on an If And formula. The formula itself works. That is: when creating the field and entering the formula, I get no errors. However, the records that match the conditions the formula is describing remain empty.
I’m hoping someone smart with formulas can check mine out
In words: I want the formula to show the right amount of service costs. When a record is linked to a specific address and rent amount, it needs to show the linked amount of service costs.
My formula looks like this:
IF(
AND(
{Address} = “Value 1”,
{Rent} = “A”
),
“Service costs A”,
IF(
AND(
{Address} = “Value 1”,
{Rent} = “B”
),
“Service costs B”,
IF(
AND(
{Address} = “Value 1”,
{Rent} = “C”
),
“Service costs C”
)
)
)
I can’t figure out why it’s not giving any outcome. Any ideas on this matter? Thanks in advance!