Excel formula to return the value that is not equal to "x"

Eddy Akl

i have 2 columns and 10 rows. the first column has data in it (1a,2a,3a ... 1b,2b,3b...) the second column has a true or false value. i only have 1 true value and all the rest will be false when changing data.

i want whenever a cell is true to show the value of the true cell in a different cell.

the "TRUE" value will be variable in the column.

barry houdini

If you want a "left lookup", i.e. to make this work without swapping columns, you can use INDEX/MATCH like this

=INDEX(A:A,MATCH(TRUE,B:B,0))

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Excel Formula to return a Specific Value

From Dev

Excel formula to return value from grid

From Dev

EXCEL Formula to find a value and return column it is found in

From Dev

Excel formula - If value was found in row return value from next cell

From Dev

Excel formula to lookup the last value in a column and return the value of the adjacent cell

From Dev

Excel Formula - if values in columns all contain X then return

From Dev

Excel return value or run calculation if criteria is not met. Formula needed

From Dev

Formula to match/lookup if part of a string in a cell is equal to a value in a given range and return this value

From Dev

Excel - Find value of range when cell is equal to x

From Dev

Excel lookup / value formula

From Dev

Handling "#Value!" in an Excel formula

From Dev

Excel formula to sum all entries in a row if value of adjacent cell is equal to third cell

From Dev

Return .cells range in Excel formula

From Dev

Return .cells range in Excel formula

From Dev

excel return formula with relative cell

From Dev

is it possible to insert a excel formula value not formula

From Dev

Excel COUNTIFS formula match 'not' x

From Dev

Excel formula highest value with condition

From Dev

Change value of formula in excel on dragging

From Dev

Excel Formula to Find Duplicate Value

From Dev

Changing excel formula result to value

From Dev

Excel Formula To Get First Non-Zero Value in Row and Return Column Header

From Dev

Excel formula to get first and last non-empty value in a row and return column header

From Dev

Excel formula to find lowest value above a given number and return the column name

From Dev

Excel VBA: How to return value without making a function that is available in the formula bar

From Dev

How can I write an excel formula to return a value from a range based on the contents of a cell?

From Dev

MS Excel How to return BLANK value in COUNTIF formula if date doesn't appear in range

From Dev

Excel 'If' formula how to check if value is less than x but more than y?

From Dev

Excel formula to return a cell's custom format

Related Related

  1. 1

    Excel Formula to return a Specific Value

  2. 2

    Excel formula to return value from grid

  3. 3

    EXCEL Formula to find a value and return column it is found in

  4. 4

    Excel formula - If value was found in row return value from next cell

  5. 5

    Excel formula to lookup the last value in a column and return the value of the adjacent cell

  6. 6

    Excel Formula - if values in columns all contain X then return

  7. 7

    Excel return value or run calculation if criteria is not met. Formula needed

  8. 8

    Formula to match/lookup if part of a string in a cell is equal to a value in a given range and return this value

  9. 9

    Excel - Find value of range when cell is equal to x

  10. 10

    Excel lookup / value formula

  11. 11

    Handling "#Value!" in an Excel formula

  12. 12

    Excel formula to sum all entries in a row if value of adjacent cell is equal to third cell

  13. 13

    Return .cells range in Excel formula

  14. 14

    Return .cells range in Excel formula

  15. 15

    excel return formula with relative cell

  16. 16

    is it possible to insert a excel formula value not formula

  17. 17

    Excel COUNTIFS formula match 'not' x

  18. 18

    Excel formula highest value with condition

  19. 19

    Change value of formula in excel on dragging

  20. 20

    Excel Formula to Find Duplicate Value

  21. 21

    Changing excel formula result to value

  22. 22

    Excel Formula To Get First Non-Zero Value in Row and Return Column Header

  23. 23

    Excel formula to get first and last non-empty value in a row and return column header

  24. 24

    Excel formula to find lowest value above a given number and return the column name

  25. 25

    Excel VBA: How to return value without making a function that is available in the formula bar

  26. 26

    How can I write an excel formula to return a value from a range based on the contents of a cell?

  27. 27

    MS Excel How to return BLANK value in COUNTIF formula if date doesn't appear in range

  28. 28

    Excel 'If' formula how to check if value is less than x but more than y?

  29. 29

    Excel formula to return a cell's custom format

HotTag

Archive