Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
3 1 1 3

Call SDC Deal Number in TR: from cell

Hello everyone,

I tried the following formula in Excel Eikon. But it does not work. The problem comes from calling the cell because when I'm typing manually the SDC number it works. How could I make it works ?

=@TR("SCREEN(U(IN(DEALS)/*UNV:DEALSMNA*/), Contains(TR.MNASDCDealNumber,""$A$2""))";"TR.MnAConsiderationOffered")


Thanks for your help

deals
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @barbara.guinot

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS


Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

hello @barbara.guinot

  • To refer to the cell in Excel, the cell number referred must be outside the double quote (else, it'll be considered as a string instead of cell reference), you may use Excel's CONCAT function to do so, please refer to an example below
  • Fix syntax by changing the ';' before the field name to be ','
  • add the command ,"CH=Fd RH=IN",B2 to place the output on cell B2 (as by default, the output will be placed on cell A2, which is the same cell of the input condition deal number for the command reference.
=@TR(CONCAT("SCREEN(U(IN(DEALS)/*UNV:DEALSMNA*/), Contains(TR.MNASDCDealNumber,",$A$2,"))"),"TR.MnAConsiderationOffered","CH=Fd RH=IN",B2)

here's the screenshot of the output of the command above excel-deal.png


excel-deal.png (13.0 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.