Forum Discussion
Prevenda_XPTA
Sep 02, 2021Copper Contributor
Multiple parameters for formula IF (with different cells)
Hello, I'm trying to compose a formula using "IF", considering the complexity of using parameters informed in two columns to defining the result in a third column(if true) based on the selectio...
- Sep 02, 2021
=IF(AND(A2="Company 01",B2="Project"),120,IF(AND(A2="Company 01",B2="Presales"),90,IF(AND(A2="Company 02",B2="Project"),150,IF(AND(A2="Company 02",B2="Presales"),115))))
=IF( AND( A2 = "Company 01" ), { B2 = "Project" ) ), { 120 ), { IF( AND( A2 = "Company 01" ), { B2 = "Presales" ) ), { 90 ), { IF( AND( A2 = "Company 02" ), { B2 = "Project" ) ), { 150 ), { IF( AND( A2 = "Company 02" ), { B2 = "Presales" ) ), { 115 ) ) ) )
Juliano-Petrukio
Sep 02, 2021Bronze Contributor
=IF(AND(A2="Company 01",B2="Project"),120,IF(AND(A2="Company 01",B2="Presales"),90,IF(AND(A2="Company 02",B2="Project"),150,IF(AND(A2="Company 02",B2="Presales"),115))))
=IF(
AND(
A2 = "Company 01"
),
{ B2 = "Project"
)
),
{ 120
),
{ IF(
AND(
A2 = "Company 01"
),
{ B2 = "Presales"
)
),
{ 90
),
{ IF(
AND(
A2 = "Company 02"
),
{ B2 = "Project"
)
),
{ 150
),
{ IF(
AND(
A2 = "Company 02"
),
{ B2 = "Presales"
)
),
{ 115
)
)
)
)
- Prevenda_XPTASep 03, 2021Copper Contributor
Juliano-Petrukio, thank you for your help, I really appreciated!