How to use a calculated name in a formula

Penbeuz

Is it possible to calculate a name to be used in a formula?

say I have this formula:

MATCH(C12;_PR.item;0)

I would like to compute the name from a string and a cell like the following that doesn't work

MATCH(C12;"_PR."&C1;0)
Jerry

Use INDIRECT:

=MATCH(C12;INDIRECT("_PR."&C1);0)

It takes a text string and converts it to a reference.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Use calculated cell reference in formula

From Dev

How to use a sheet name that is referenced in a cell in a formula?

From Dev

How to return calculated array in array formula

From Dev

How to use a defined name in a formula that is referenced in another cell to make it dynamic

From Dev

How can I use a single cell formula to display the name of a table?

From Java

Haskell: How is this formula calculated? `(return (+1)) (Just 10) 10`

From Dev

handsontable's subproject rulejs: how to get the calculated value of a formula cell?

From Dev

handsontable's subproject rulejs: how to get the calculated value of a formula cell?

From Dev

Sharepoint calculated field formula

From Dev

How to use calculated fields for math in MongoDB?

From Dev

How to use order by on a calculated field in SQL?

From Dev

How to use a criteria range with calculated values?

From Dev

How to use @Formula in Hibernate/JPA

From Dev

How to use OneToOne with Hibernate Formula

From Dev

Is there a way to reuse a calculated value in a formula?

From Dev

If statment of a cell calculated using formula

From Dev

Retrieving calculated field's formula?

From Dev

Sharepoint Calculated Formula to List Field

From Dev

Error in Tableau calculated field formula

From Java

How to mount formula with dynamic sheet name

From Dev

How to dynamically set tab name in a formula?

From Dev

How set cell name for formula in HSSFDataValidation

From Dev

How do I name a calculated boolean column with AREL?

From Dev

How to use the outcome of a formula as the value for Vlookup or another IF formula

From Dev

how to use @NameLookUp formula in lotus notes in Java

From Dev

How to use entity field in Hibernate @Formula

From Dev

How to convert a formula into MathML for use in a web page

From Dev

How to use a special formula in Magento cart

From Dev

How to use index to assign address and formula to arrays?

Related Related

  1. 1

    Use calculated cell reference in formula

  2. 2

    How to use a sheet name that is referenced in a cell in a formula?

  3. 3

    How to return calculated array in array formula

  4. 4

    How to use a defined name in a formula that is referenced in another cell to make it dynamic

  5. 5

    How can I use a single cell formula to display the name of a table?

  6. 6

    Haskell: How is this formula calculated? `(return (+1)) (Just 10) 10`

  7. 7

    handsontable's subproject rulejs: how to get the calculated value of a formula cell?

  8. 8

    handsontable's subproject rulejs: how to get the calculated value of a formula cell?

  9. 9

    Sharepoint calculated field formula

  10. 10

    How to use calculated fields for math in MongoDB?

  11. 11

    How to use order by on a calculated field in SQL?

  12. 12

    How to use a criteria range with calculated values?

  13. 13

    How to use @Formula in Hibernate/JPA

  14. 14

    How to use OneToOne with Hibernate Formula

  15. 15

    Is there a way to reuse a calculated value in a formula?

  16. 16

    If statment of a cell calculated using formula

  17. 17

    Retrieving calculated field's formula?

  18. 18

    Sharepoint Calculated Formula to List Field

  19. 19

    Error in Tableau calculated field formula

  20. 20

    How to mount formula with dynamic sheet name

  21. 21

    How to dynamically set tab name in a formula?

  22. 22

    How set cell name for formula in HSSFDataValidation

  23. 23

    How do I name a calculated boolean column with AREL?

  24. 24

    How to use the outcome of a formula as the value for Vlookup or another IF formula

  25. 25

    how to use @NameLookUp formula in lotus notes in Java

  26. 26

    How to use entity field in Hibernate @Formula

  27. 27

    How to convert a formula into MathML for use in a web page

  28. 28

    How to use a special formula in Magento cart

  29. 29

    How to use index to assign address and formula to arrays?

HotTag

Archive