Using Multiple IF Statements with "AND" and "OR" and multiplication

Hi Team,

I am trying to make an expression that auto calculates a price based on specific categories or columns a customer falls into.There are only 4 combinations. So that means I need an IF statement that looks at 4 different cases to calculate a price.

Example I have the following columns :

  1. Type(Enum)
  2. Service Lateral (Number)
  3. Trenching (Enum)

The column โ€œTypeโ€ and "Trenching only has two choices to choose from.

What I am trying to accomplish is something like this:

If (
Type = โ€œOverheadโ€, Service Lateral Equals = 100 and Trenching = โ€œCompanyโ€**
then multiply by 24.88

OR

If(
Type = โ€œUndergroundโ€, Service Lateral = 100 and Trenching = โ€œCustomerโ€
Then multiply by 4.27

OR
If(
Type = โ€œOverheadโ€, Service Lateral = 100 and Trenching = โ€œCompanyโ€
Then multiply by 8.38

OR
If(
Type = โ€œUndergroundโ€, Service Lateral = 100 and Trenching = โ€œCompanyโ€
Then multiply by 20.42))

I looked at a few problems on this board already and where my confusion is coming from is using the AND/OR statements for multiple cases. Not sure where exactly to put AND. I am also unsure if I should use โ€œIFโ€ or โ€œIFSโ€.

So this expression will take place in another column that is READ ONLY and it will calculate the price based on what was answered throughout the application. If there is another way to do this without IF statements Iโ€™m all ears.

Hereโ€™s what I tried below just in case you are interested in how I was thinking:

IF(
AND(
[Type] = โ€œUndergroundโ€,
[Trenching] = โ€œCompanyโ€),
[Service lateral] * 20.42),

OR

IF(
AND(
[Type] = โ€œOverheadโ€,
[Trenching] = โ€œCompanyโ€),
[Service lateral] * 20.88),

IF(
AND(
blah blah blah))

Thank you in advanced

Solved Solved
1 9 7,840
1 ACCEPTED SOLUTION

There is no need for the OR()s and you are terminating expressions prematurely by putting parenthesis in the wrong place and omitting commas. For simplicity I have fixed your statement for you, but to gain a better understanding you should review the help link I posted above.

View solution in original post

9 REPLIES 9
Top Labels in this Space