Show Top n Values on One Line

I have my SSRS report to show the top 3 volumes by physician. My problem is it shows them in three lines going down, even though the code is in one cell. Such as:
Dr Smith
Dr Johnson
Dr James
I need it to show as Dr Smith, Dr Johnson, Dr James (all on one line separated by commas). Here is what I have tried:
=Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=1,
Fields!Attending_Pract_Name.Value) & ", " &
Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=2,
Fields!Attending_Pract_Name.Value) & ", " &
Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=3,
Fields!Attending_Pract_Name.Value)
But it still puts the list going down instead of side by side. Any ideas?

Hi cpemtp1,
Based on my understanding, there is a column with a lot of rows. Now, you want to combine data of top three rows into one line, right?
In Reporting Services, when generating each detail row, it only pass one value of data field into expression. So we can never simply using expression to combine three values within one data field together. Regarding your expression, for each row, if this
value meets requirement, the expression returns this value, otherwise it returns null value. In your scenario, if you only want to display those top three values in your tablix, I would recommend you create another dataset and combine data of top three rows
to one line on query level. Please refer to screenshots below:
Reference:
Use PATH Mode with FOR XML
How to combine values from multiple rows of a single column (T-SQL, Microsoft SQL Server, FOR XML PATH, CSV ).
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu

Similar Messages

  • Exporting PDF document to Excel.  When I export a PDF document to Excel containing lists of  people the Excel page shows all the names on  one line several inches deep instead of on separate lines which makes editing impossible.  What am I doing wrong?

    Exporting PDF document to Excel.  When I export a PDF document to Excel containing lists of  people the Excel page shows all the names on  one line several inches deep instead of on separate lines which makes editing impossible.  What am I doing wrong?

    Murray is right. Padding (and margins) is added to the width. However, when using percentages, you should never use figures that add up to exactly 100%.
    Browsers need to convert the percentages to pixels. Because pixels must be whole numbers, some percentages are rounded up, which results in the final element dropping down below its neighbours. With percentages, it's much safer to use values that add up to 98% (99% often works, but 98% is safer).

  • Show different distribution channels in one line

    Hello everybody,
    I have the following reporting problem: My customer wants to see an an attribute to 0Mat_sales summarized in one line despite the different distribution channels. With other words there is one material where two different distribution channels have the same value in this attribute. Any chance to show this in one line summarized in the query?
    Thx in advance,
    Karsten.

    This is not a support forum for the psexec utility.
    Try posting here:
    http://forum.sysinternals.com/pstools_forum8.html
    -- Bill Stewart [Bill_Stewart]

  • Put all values in one line

    Hi, people.
    I have the situacion of result set of a query
    cod val time1 time2 time3
    1 a 18:30 null null
    1 a null 20:30 null
    1 a null null 21:40
    2 b 10:27 null null
    understand 'null' like empty spaces ou null
    How do I do to show record 1 i one line , i need this way
    1 a 18:30 20:30 21:40
    2 b 10:27
    thanks....
    Edited by: claudioaragao on 07/05/2012 09:36
    Edited by: claudioaragao on 07/05/2012 09:38

    ok...this is the query
    SELECT PEDV_ID_PLANTA
    , DT_REGISTRO
    , NFCA_ID_PED
    , PEDV_ID_PREVOL
    , PEDV_ID_ONDA
    , NFCA_ID_NOTA
    , NFCA_SERIE
    , NFCA_VL_TOTAL_NOTA
    , NFCA_QT_VOLUMES
    , EMISSAO
    , INICIO
    , ACEITA
    , NFCA_USUARIO
    , USUA_NOME
    FROM (
    SELECT ROWNUM CUR,
    PEDV_ID_PLANTA,
    TO_CHAR(PEDV_DT_REGISTRO,'DD/MM/RRRR') DT_REGISTRO,
    NFCA_ID_PED,
    PEDV_ID_PREVOL,
    PEDV_ID_ONDA,
    NFCA_ID_NOTA,
    NFCA_SERIE,
    NFCA_VL_TOTAL_NOTA,
    NFCA_QT_VOLUMES,
    'E' STATUS,
    DECODE(STATUS,NULL,NULL,'E',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) EMISSAO,
    DECODE(STATUS,NULL,NULL,'I',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) INICIO,
    DECODE(STATUS,NULL,NULL,'A',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) ACEITA,
    NFCA_USUARIO,
    USUA_NOME
    FROM
    SELECT PC.PEDV_ID_PLANTA,
    PC.PEDV_DT_REGISTRO,
    NC.NFCA_ID_PED,
    PC.PEDV_ID_PREVOL,
    PC.PEDV_ID_ONDA,
    NC.NFCA_ID_NOTA,
    NC.NFCA_SERIE,
    NC.NFCA_VL_TOTAL_NOTA,
    NC.NFCA_QT_VOLUMES,
    EMIS_NOTA.SWTK_DT_REGISTRO,
    'E' STATUS,
    NC.NFCA_USUARIO,
    US.USUA_NOME
    FROM PLANTA PL,
    PEDIDO_CAB PC,
    FILIAL FI,
    NOTA_FISCAL_CABECALHO NC,
    USUARIOS US,
    SW_TRACKING EMIS_NOTA
    WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
    AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_SERIE LIKE '1'
    AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
    AND PC.PEDV_SITUACAO != 'C'
    AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
    AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
    AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
    AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
    AND NC.NFCA_SITUACAO = 'A'
    AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
    AND EMIS_NOTA.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
    FROM SW_TRACKING
    WHERE SWTK_ID_PED = PC.PEDV_ID_PED
    AND SWTK_ID_EVENTO = 9)
    UNION
    SELECT PC.PEDV_ID_PLANTA,
    PC.PEDV_DT_REGISTRO,
    NC.NFCA_ID_PED,
    PC.PEDV_ID_PREVOL,
    PC.PEDV_ID_ONDA,
    NC.NFCA_ID_NOTA,
    NC.NFCA_SERIE,
    NC.NFCA_VL_TOTAL_NOTA,
    NC.NFCA_QT_VOLUMES,
    INIC_CONF.SWTK_DT_REGISTRO,
    'I' STATUS,
    NC.NFCA_USUARIO,
    US.USUA_NOME
    FROM PLANTA PL,
    PEDIDO_CAB PC,
    FILIAL FI,
    NOTA_FISCAL_CABECALHO NC,
    USUARIOS US,
    SW_TRACKING INIC_CONF
    WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
    AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_SERIE = '1'
    AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
    AND PC.PEDV_SITUACAO != 'C'
    AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
    AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
    AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
    AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
    AND NC.NFCA_SITUACAO = 'A'
    AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
    AND INIC_CONF.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
    FROM SW_TRACKING
    WHERE SWTK_ID_PED = PC.PEDV_ID_PED
    AND SWTK_ID_EVENTO = 15)
    UNION
    SELECT PC.PEDV_ID_PLANTA,
    PC.PEDV_DT_REGISTRO,
    NC.NFCA_ID_PED,
    PC.PEDV_ID_PREVOL,
    PC.PEDV_ID_ONDA,
    NC.NFCA_ID_NOTA,
    NC.NFCA_SERIE,
    NC.NFCA_VL_TOTAL_NOTA,
    NC.NFCA_QT_VOLUMES,
    NOTA_ACEITA.SWTK_DT_REGISTRO,
    'A' STATUS,
    NC.NFCA_USUARIO,
    US.USUA_NOME
    FROM PLANTA PL,
    PEDIDO_CAB PC,
    FILIAL FI,
    NOTA_FISCAL_CABECALHO NC,
    USUARIOS US,
    SW_TRACKING NOTA_ACEITA
    WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
    AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
    AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
    AND NC.NFCA_SERIE = '1'
    AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
    AND PC.PEDV_SITUACAO != 'C'
    AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
    AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
    AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
    AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
    AND NC.NFCA_SITUACAO = 'A'
    AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
    AND NOTA_ACEITA.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
    FROM SW_TRACKING
    WHERE SWTK_ID_PED = PC.PEDV_ID_PED
    AND SWTK_ID_EVENTO = 35)
    ORDER BY PEDV_ID_PLANTA,PEDV_DT_REGISTRO
    and this is the result set
    1     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     7/5/2012     7/5/2012     10/10/2008
    2     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     7/5/2012     10/11/2048     7/5/2012
    3     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     10/9/2003     7/5/2012     7/5/2012

  • Grouping TV shows so they appear as one line on Apple TV

    Hi, I remember when the original Apple TV came out you used to be able to group your seasons of the same TV show together using the grouping field on the options tab. This meant that the initial TV menu only hah one line for the TV show and after you selected it you then saw all the seasons. Does anyone know how to get this working on the new Apple TV or what needs to be set in iTunes to make it work. Any help will be much appreciated. Regards Andy CJ

    Warranty service on the iPhone is only available in the country of purchase.  You will need to send your phone to someone in the US so he/she can bring it in to Apple to look at. 
    If that's not feasible, you can google to search for a 3rd party iPhone repair shop in your area.

  • Re: settings -- how to reduce waste space at top of page to one line only

    I find that the wide screens are too short so it seems like more scolling is needed since less of web page is viewable and this problem is made worse by waste space taken up by various lines - for example on my firefox page, there is a blue line at the top that currently says "ask a question" Firefox help etc and then the rest of the line is blank -- about 70% of space not used/needed
    The second line down shows: File, Edit, View, History, Bookmarks, Tools, Help -- then about 70%waste space -- rest of line is blank -- How can we put stuff from various lines into one or two lines Max ?
    To continue, in my case, the next line has a couple of tabs -- this is useful -- maybe if there could be an easy way to show tabs in their own line when lots of various pages need to be open but when need max space viewable below to click a dropdown to push tabs up to end of next line above (in the waste space)
    Finally, my page has the 4th line taken up by the Forward and Back arrows, the web address line, and then a shorter box called iLivid Web Search with a magnifying glass and then a little box at the end of a house -- which I use all the time to go to my home page for new tabs opened
    I think it would be cool if we could easily elim all but the blue line and one more line by pushing stuff in line 3 and 4 up into line 1 (blue line) and line 2
    My much older IE version had a feature you could drag the lines up they would do what I am saying with all the lines except the blue line at the top -- then when it compressed thje info, it would just show part of title and then a little // sort of button to click to see or expand a part of the line to read it all if needed
    It seems likely this has mostly been solved but I can not seem to figure how to use the settting and buttons on my firefox page to accomplish these changes easily back and forth
    From my looking at it, these features need to be available when you right click on each line but maybe my version8 is not set up quite right
    so any and all assistance is greatly appreciated
    Cheers, G

    Found settings in on the Layout tab of the page and changed the top px from 32 to 10.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • SQL to report multiple values in one line

    I have a question for you SQL experts out there.
    Let's say I have two tables,
    solution
    solution_data
    There is a one-to-many relationship between the solution table and the solution_data table.
    For example,
    solution.id = 1
    solution.name = calendar
    records in the solution_data table
    solution_data.solution_id = 1
    solution_data.supported_os = Windows
    solution_data.solution_id = 1
    solution_data.supported_os = Linux
    solution_data.solution_id = 1
    solution_data.supported_os = Mac
    I want a SQL query to output that data on a single line like this:
    solution name     supported_os
    calendar     windows, Linux, Mac
    I can't use aliases for solution_data, because each solution_data record does not have a known unique identifier, nor do I know ahead of time how many records there are for a particular solution.
    I also don't want to write a PL/SQL procedure for this.
    Any ideas?

    Tom Kyte has a solution called STRAGG
    http://asktom.oracle.com/pls/ask/f?p=4950:8:368216229952376057::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:2196162600402,

  • How to show top 20 values in a Pie Chart

    Hi
    We have a requirement to develop a Pie chart for top 20 Order value locations.but i am not able to plug in top 20 logic in a pie chart.This functionality (TOP N) is avilable in bar chart , but it is not avilable in Pie chart. Could some help me to implement this logic in a Pie chart.
    Your help in this regard is highly appreciated.
    Thanks
    Laj

    Not sure what you are saying here.  Obviously you have to have a place to place the distinct values, whether in another column or in the same column. That's not really a drawback, just a fact of life.
    I'm curious about what you mean by "multiple columns to dynamically select some records with specific criteria from different columns."  If you can give a specific example of what you are trying to do, I there may be a solution.  Are you trying to do something like Excel's filtering on multiple columns?
    If you are you can click the disclosure triangle by the column letter to get a dropdown like this:
    Similar to Excel.
    SG

  • CJI5 commitment line item report not showing po gross value

    Dear All,
    system is showing only net value in CJI5 report, actaully gross value of po must be reflected in CJI5 report and this happening in all po's like material, service's etc. example is as follows.
    Example:
    po net value: 1000
    st 10%: 100
    po gross value : 1100 (inclusive of all taxes, ed, disc. etc)
    what could be the reason for not showing po gross value in commitment line item report.
    Thanks & Regards,
    Sandeep

    Hi,
    As far as i know the commitment report will never show you the value that is inclusive of taxes. It will only show the net value of the PO.
    I just tried a scenario in my system by creating a PO for a net value of 3000 GBP and based on the tax code i entered system calculated a tax of 525 GBP. However when i check CJI5 report it shows only 3000 GBP as commitment and not 3525 GBP. This is how the standard system behaves, i believe. You can cross check this in the table COOI. The COOI table also shows the net value of the PO and does not include the tax amount in commitment.
    Regards,
    Gokul

  • Show Multiple Filter Values in a Web Template

    Hello
    I have a Web Template based on a query. On this Web Template I can set multiple single filter values for one characteristic.
    Now I want to show these filtered values for this characteristic on the web item. This is possible for ONE filter value when you use the XML path (f.e. DATA_PROVIDER:DP1?/BICS_VIEW/SELECTION_STATE/SELECTION/CHARACTERISTICS/CHARACTERISTIC[@name=&apos;CHARNAME&apos;]/SELECTIONS/SELECTION[1]/MEMBER/@text)
    Is there a possibility to show MULTIPLE filter values for one characteristics in a text or input field? I don't want to use a drop down box or the info field.
    Kind Regards,
    Andreas

    HI,
    the best ay to do is create a query with same variable parameters as of the main query and place filter Characters on rows.
    Use this query in one analysis item and use it on top row of the template as Filters information.This will give better look and feel as well solve your requirement

  • Problem in Showing multiple values into one text box.

    Hi all,
    How can show i multiple row values into one text box. here text box is multi line type.
    i have one table it has content column, it has number of rows. i need to show those data into one text box in form. how can i solve it?
    my sample code here,
    egin
    --:block3.txt_to := :parameter.p_current_user||''||':'||:block3.txt_From;
    -- go_item('txt_from');
    insert into chat(fromid,toid,content)values(:block3.fromid,:block3.toid,:block3.txt_From);
    :block3.txt_From:= null;
    commit;
    :block3.txt_to := :parameter.p_current_user||''||':'||:block3.txt_From;
    go_item('txt_from');
    declare
    cursor c4 is select content from chat where toid = :block3.fromid;
    rec1 c4%rowtype;
    begin
    open c4;
    loop
    fetch c4 into rec1;
    exit when c4%notfound;
    null;
    end loop;
    end;
    --select content into :block3.txt_to from chat where toid= :block3.fromid;
    end;
    please give me some tips to solve it.
    thanks
    gurus

    Hi,
    Try giving CHR(10) for line feed.
    DECLARE
         CURSOR C4 IS SELECT CONTENT FROM CHAT WHERE TOID = :BLOCK3.FROMID;
         Str_Temp VARCHAR2(20);
    BEGIN
         :BLOCK3.TXT_TO := '';
         OPEN C4;
         LOOP
              FETCH C4 INTO Str_Temp;
              EXIT WHEN C4%NOTFOUND;
              :BLOCK3.TXT_TO := :BLOCK3.TXT_TO || CHR(10) || Str_Temp;
         END LOOP;
         CLOSE C4;
    END;Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Different value in sales order and billing document for one line item

    Hi Experts,
    User created a sales order with three line items say line item 10, line item 20, line30 and he did the delivery and billing also. Line item 10 value is 5024.26 EUR in Sales order
    At the time of billing the value of a line item 10 is increased by 0.02 i.e. 5024.28
    I asked the user cancel that invoice and the post goods issue. He cancelled the invoice and post goods issue. Then he created the PGI and billing now the value of line item decrease by 0.01(5024.27) again he cancelled the invoice and post goods issue. he created the post goods issue and billing. Now the value is correct i.e. 5024.26.
    User is asking me the reason can any one help me in this
    Note: price is copying from delivery to billing

    Morning Sunina
    Now consider this scenario
    Item a - 10
    Item b - 20
    Item c - 30
    and the validity of condition rec for item C is 31st of Jan
    after 31st JAN the record changes or there isn't any.
    In Copy control the pricing type is 'B' i.e., carry out new pricing.
    Now if the document is created in January it will take all the above prices. and this document is then billed in Feb. Now the copycontrol, whilst copying the prices, will predetermine the same.
    Now your task is to check if there was user intervention, check the pricing in order and check what condition types got affected in order and in billing.
    If your scenario is still not amongst the above cases...
    I don't know what to do, if you figure out please let us also know, god know when we would face the same scenario....
    Take care

  • My mouse scrolls shows each line moving up instead of moving one line at a time annoying

    Since downloading firefox 3.6 when I scroll down a page it shows each line moving up instead of just moving one line up its very annoying

    It could be that there is not enough memory in the printer or the print server to hold the entire document while printing. The printer gets Postscript files, which are larger than the original document. Also, if you are doing multiple copies, if you collate the pages, that takes more memory than printing each page multiple times.

  • Using WQL "one-liner" to extract a value from the registry

    Can I extract a value from the registry using a "one-liner" WQL command?  Something like the following:
    Under root\default:StdRegProv
                   SELECT <Data> FROM "HKLM:SOFTWARE\Toto\Version"
    Please note that I am aware of how this is done via script.  The problem is that I'm using a management system (SCOM), which only allows me to supply a simple WQL query to perform my evaluation.
    Thanks,
    Larry

    Hi Larry,
    There have a specific forum to support the scripting related question, i sugges you ask in Scripting forum there will have more
    professional engineer will help you.
    The Official Scripting Guys Forum!
    https://social.technet.microsoft.com/Forums/en-US/9d5a7990-b975-488a-b7c0-6d866f29cf0a/change-mouse-scheme?forum=ITCG
    Best Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Desktop, One line of icons frozen, and a window frozen on the side, top bar shadows of icons frozen.

    So on my desktop, one line of icons is frozen, although the same icons are also on my desktop and actually working. Also the edge of a window is frozen. Lastly, on the right of the top bar, the little icons like battery, wifi, etc. are frozen as shadows underneath all the working icons... Basically everything is working right, just "copies" of the others are frozen...

    Check in System Preferences>Universal Access and see if Zoom is on. If you have toddlers or cats this can accidentally turned on by hitting a group of keys that include Option + Command + 8.
    To prevent this being accidentally activated in the future go to System Preferences>Keyboard>Keyboard Shortcuts>Universal Access and uncheck all the boxes.

Maybe you are looking for

  • Quantity reconcilation of sub-contracting challan error

    Hi Experts, I am facing problem while doing Quantity reconcilation of sub-contracting challan. Challan material is different from material document Message no. 8I572 Thanks in advance

  • How to populate the dropdown in selection widget from a file?

    i am using a cq:widget of xtype selection and type select. I got lot of values as my options.i want a simple procedure to populate them. They have mentioned that they can be populated from a json response. Can you explain how to do the same? or is th

  • Assign search help to a field in PCUI

    Hi Friends, Here is my requirement. I have designed a PCUI application which searches the address based on the post code entered. Now the standard method to assign this application as search help is to specify the name of the application in the "inpu

  • How do I obtain the names of graphic layers from a PDF?

    I want to write an applescript that will extact the layer names from a PDF imported into InDesign. However, the only layer name it returns is the separator layer "Test.indd" and not the actual layers contained in the PDF. The PDFs are saved from AI t

  • Hold on Frame until cuepoint = end

    Hi all, I am still struggling with a basic problem (yes I am a lingo newbie). Simply, I want to hold on a frame until a sound is finished. I am trying to write something that checks if the cuepoint "end" is reached, else it loops. If cuepoint "end" i