Try this. I’m assuming that you may have more than 3 options for {Status}. Otherwise, you can simplify the formula more. I wish that I was better at formatting these answers.
IF(AND( OR({Status}= ‘Pre Live’,{Status}= ‘Active’),
{Sale Type}= ‘Traditional’),
{List Price} * {Listing % Forecast after Buyer and Auction},
IF(AND( OR({Status}= ‘Pre Live’,{Status}= ‘Active’),
{Sale Type}= ‘Auction’),
{Reserve Price} * {Listing % Forecast after Buyer and Auction},
IF({Status}=‘Escrow’,{Transaction Commission}*{Sold Price})))
Simplified further, the formula would be:
IF(
OR({Status} = 'Pre Live', {Status} = 'Active'),
SWITCH(
{Sale Type},
'Traditional', {List Price}*{Listing % Forecast after Buyer and Auction},
'Auction', {Reserve Price}*{Listing % Forecast after Buyer and Auction}
),
IF(
{Status} = 'Escrow',
{Transaction Commission}*{Sold Price}
)
)
Try this. I’m assuming that you may have more than 3 options for {Status}. Otherwise, you can simplify the formula more. I wish that I was better at formatting these answers.
IF(AND( OR({Status}= ‘Pre Live’,{Status}= ‘Active’),
{Sale Type}= ‘Traditional’),
{List Price} * {Listing % Forecast after Buyer and Auction},
IF(AND( OR({Status}= ‘Pre Live’,{Status}= ‘Active’),
{Sale Type}= ‘Auction’),
{Reserve Price} * {Listing % Forecast after Buyer and Auction},
IF({Status}=‘Escrow’,{Transaction Commission}*{Sold Price})))
When typing multi-line formulas, put three backticks on a single line before and after your text.
```
insert your mult-line formula here
and continue it here
```
You should also check for curly quotes (‘
, ’
, “
, and ”
) and convert them to straight quotes ('
and "
).
If {Status} can have only the three possible choices, here is another option with nested IF
s.
IF(
{Status} = 'Escrow',
{Transaction Commission}*{Sold Price},
IF(
{Sale Type} = 'Auction',
{Reserve Price}*{Listing % Forecast after Buyer and Auction},
IF(
{Sale Type} = 'Traditional',
{List Price}*{Listing % Forecast after Buyer and Auction}
)))