Page 1 of 1

Get Series with DisplayNames while using Show

Posted: Mon May 11, 2026 9:04 pm
by nidhijain
Is there a way that if i use SHOW command, i get the display names of the series rather than the usual name, the same way as it show in charts.

Show gdp, should display the series with "Gross Domestic Product).

In case, if SPOOL is teh only option to achieve this, how do we show multiple series from spool for comparison,
like if i added, GDP, Crude, demand, supply... these four series in SPOOL, i don't want the tree structure display mode.

Can it be displayed like regular SHOW command, so i can compare the data of these series same as in spreadsheet

Re: Get Series with DisplayNames while using Show

Posted: Tue May 12, 2026 8:56 am
by EViews Gareth
I don't follow what you want here.

The show command is used to display a view of an object.

You could use

Code: Select all

show object.label
which would display the label view, that has the displayname as one of the entries?

Re: Get Series with DisplayNames while using Show

Posted: Tue May 12, 2026 9:56 pm
by nidhijain
I have series in my workfile as for example:
GDP, PP_PR_US, PP_PR_IN.
Using these names as they are handled in programs.

I have given them certain understandable displaynames as :
GDP : Gross Domestic Product
PP_PR_US : Price of UnitedStates
PP_PR_IN : Price of India.

Now what i want is, when i run the show command as :
show gdp PP_PR_us pp_pr_in
then in the result window, instead of getting these regular names on top of series, can i get the displaynames.

Attaching the screenshot.

Re: Get Series with DisplayNames while using Show

Posted: Thu May 14, 2026 3:37 pm
by EViews Gareth
No, the spreadsheet view of a group does not allow you to use displaynames instead of actual names.

You could write a quick add in that does it for you. Freeze the spreadsheet view of the group into a table, loop through the columns replacing the text in the first row with the displayname of the series instead of the actual name, and then displaying that table in the group.