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 :
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! Go to 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.
User | Count |
---|---|
20 | |
16 | |
4 | |
3 | |
3 |