How to Combine IF statements in Excel

Jose

The following formulas work individually but when I combine them I get a VALUE error, please help!

=IF(AND(LEFT(D7,14)="Cost Avoidance")*AND(AI7>=100000),"Yes, provide validation form in column AK","No")

=IF(AND(LEFT(D7,14)="Cost Reduction")*AND(AI7>=50000),"Yes, provide validation form in column AK","No")

Combined (doesn't work): =IF(LEFT(D7,14)="Cost Avoidance"*AND(AI7>=100000),"Yes, provide validation form in column AK",IF(LEFT(D7,14)="Cost Reduction"*AND(AI7>=50000),"Yes, provide validation form in column AK","No"))

Jose

=IF(AND(LEFT(D7,14)="Cost Avoidance",AI7>=100000),"Yes, provide validation form in column AK",IF(AND(LEFT(D7,14)="Cost Reduction",AI7>=50000),"Yes, provide validation form in column AK","No"))

Solved it on my own

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I combine these two if/else statements for different results?

From Dev

How do i combine multiple select statements in separate columns?

From Dev

How to combine two select statements in SQL Server

From Dev

How can I combine these jQuery statements?

From Dev

Perl regex: how do I combine these 2 regex statements?

From Dev

How do I combine two pig statements into one?

From Dev

how can combine the two sqlite statements into one statement?

From Dev

How to combine multiple count statements in SQL

From Dev

How do I combine two $and statements in an $or statement in mongodb?

From Dev

How to Combine Two Extglob statements in Bash

From Dev

How to combine Switch statements?

From Dev

How do I combine these mysql statements

From Dev

How to combine 2 SQL statements into one table

From Dev

how to combine multiple if statements in one line python3

From Dev

How to combine these two sql statements

From Dev

How to combine three Select Statements using UNION

From Dev

How can I combine these jQuery statements?

From Dev

How to combine multiple count statements in SQL

From Dev

How to combine conditional statements in Lotus Notes formula language?

From Dev

How can I combine these two statements?

From Dev

Combine two long IF statements on Excel into one formula

From Dev

How to combine these 2 ng-class statements?

From Dev

How to combine increment and decrement statements into one single statements

From Dev

How to combine Switch statements?

From Dev

How do I combine these two while statements into one?

From Dev

How to combine these sql queries in Excel

From Dev

How to combine two SQL SELECT statements in one?

From Dev

How to combine two select statements in c++

From Dev

how to combine multiple IF in ms excel

Related Related

  1. 1

    How can I combine these two if/else statements for different results?

  2. 2

    How do i combine multiple select statements in separate columns?

  3. 3

    How to combine two select statements in SQL Server

  4. 4

    How can I combine these jQuery statements?

  5. 5

    Perl regex: how do I combine these 2 regex statements?

  6. 6

    How do I combine two pig statements into one?

  7. 7

    how can combine the two sqlite statements into one statement?

  8. 8

    How to combine multiple count statements in SQL

  9. 9

    How do I combine two $and statements in an $or statement in mongodb?

  10. 10

    How to Combine Two Extglob statements in Bash

  11. 11

    How to combine Switch statements?

  12. 12

    How do I combine these mysql statements

  13. 13

    How to combine 2 SQL statements into one table

  14. 14

    how to combine multiple if statements in one line python3

  15. 15

    How to combine these two sql statements

  16. 16

    How to combine three Select Statements using UNION

  17. 17

    How can I combine these jQuery statements?

  18. 18

    How to combine multiple count statements in SQL

  19. 19

    How to combine conditional statements in Lotus Notes formula language?

  20. 20

    How can I combine these two statements?

  21. 21

    Combine two long IF statements on Excel into one formula

  22. 22

    How to combine these 2 ng-class statements?

  23. 23

    How to combine increment and decrement statements into one single statements

  24. 24

    How to combine Switch statements?

  25. 25

    How do I combine these two while statements into one?

  26. 26

    How to combine these sql queries in Excel

  27. 27

    How to combine two SQL SELECT statements in one?

  28. 28

    How to combine two select statements in c++

  29. 29

    how to combine multiple IF in ms excel

HotTag

Archive