Starting from version v3.41.0 of all those functions will inherit some Real Time Data functions behavior. Thereby, the RTD throttle interval will impact every
functions. For more information, please check the handling process of RTD throttling.
INFCODECONVERT() can be used to convert an instrument code, an ISIN or a Bloomberg code into a company code. It can be passed to INFGET() company_code argument.
None of the arguments is case sensitive. You can get help on the function in Excel by hitting <SHIFT>+<F3>.
Syntax
INFCODECONVERT(Code,[Source_type], [Dest_type])
|
Parameter |
Description
|
|---|---|
|
|
Input code to be converted. |
|
|
Type of input code as a keyword. Default is Instrument (for Infront instrument code). |
|
|
Type of output code as a keyword. Default is company (for Infront company code). |
|
Keyword |
Description |
|---|---|
|
|
Infront instrument code. |
|
|
Infront company code. |
|
|
ISIN. |
|
|
Ticker. |
|
|
Infront company name. |
|
|
Bloomberg code. |
|
Code |
Description
|
|---|---|
|
=INFCODECONVERT("LSE:VOD") |
Converts an instrument code "LSE:VOD" in company code. Output: 21298EX |
|
=INFCODECONVERT("GB00BH4HKS39";"ISIN";"COMPANY") |
Converts an ISIN in company code. Output: 21298EX
|
|
=INFCODECONVERT("LSE:VOD";"INSTRUMENT";"COMPANY") |
Converts an instrument code "LSE:VOD" in company code. Output: 21298EX |
|
=INFCODECONVERT("VOD LN";"BLOOMBERG";"COMPANY") |
Converts a Bloomberg code "VOD LN" in company code. Output: 21298EX
|