How to view multi-select responses in individual columns

Hi,
I have a multi-select field on my form. Users can check none, one, or many responses. When viewing the resluts, the response are concatenated together by a semi-colon and displayed in one column. I need to be able to sort based on the specific responses. Other form engines put these types of multi-select responses into unique columns for sorting purposes. How do I do this in Adobe Forms?
Thanks,
Doug Ward

Doug,
Did you try the right click and leftclick on the column letter?  I'm pretty sure that addresses the issue.
Here are a couple of screen shots using a multiselect field with choices "AnswerOne AnswerTwo AnswerThree"
Here is what happens when you right click on the column heading:
Here is what happens when you left click on the column's letter (in this case B):
You'll see that in both cases, you can sort first or last by any of the options in the multiselect field.  If you sort first by AnswerOne, all the responses that chose "AnswerOne" will show up first.  If you sort last by "AnswerOne" all of them will show up last.
Does this solve the issue you're describing?
Another option would to use the filtering functionality.  If you open up FormsCentral, go to the Help Menu, and click on FormsCentral Help, then click on "View Responses" and click on "Sort and Filter data", it will walk you through filtering data.  Here is the link
You can set up filters to show only the response that answer "AnswerOne" or any number of combinations ("AnswerOne" AND "AnswerThree", "AnswerTwo" OR "AnswerThree").
Hope one of these two methods helps
Anatole

Similar Messages

  • How to use multi select in a query report

    I defined a lov. This lov retuns name and a id. I want to use the result of this multi select in my query.
    I always get invalid number when I choose two items of the select. When I debug I see that the return value of the multi select is 1:2. How can I change the seperator : in , I tried the following but this does't work.
    if :P26_PRODUCTTYPE IS NOT NULL then
    l_sql := l_sql ||' and producttype in
    (REPLACE(:p26_producttype,'':'','','' ))';
    end if;

    as you're finding, multiple values selected from html db multi-select list items (and checkboxes) are stored as a single, colon-delimited string. i explained an easy way to handle this via pl/sql in...
    Multiple select list
    ...that post shows you how to throw the selected values into a pl/sql table and step through them as needed. it also showed how to use an instr to parse through the string if you want to go that route. you could use that same instr logic right in your sql query. so let's say your lov for your multi-select item (P1_MY_MULTISELECT, we'll call it) was defined as...
    select ename, empno from emp order by 1
    ...and your user selected KING, FORD, and JONES. :P1_MY_MULTISELECT would store those values as...
    7839:7902:7566
    ...you could then write a query to return the selected enames with something like...
    select ename, job
    from emp
    where insrt (':'||:P1_MY_MULTISELECT||':',':'||empno||':') != 0
    ...hope this helps,
    raj

  • How  to Create Multi select  Popup LOV

    Hi,
    I have a requirment in my application like Below scenario.
    I created one page like compose mail. In that i have used popup lov for selecting the user.
    But the problem is, it is allowing only one user to be select.In my case i want to select multiple users to send the
    mail.
    Please help me.
    NR

    Hi,
    How many users do you have in total? If it is a small number (a few dozen) you could use a multi select list or a shuttle item.
    However if there are hundreds of users to choose from, you may need to write your own pop up LOV to select them (probably using an Apex collection to store the temporary list).
    Or if you are really cool you could do something web 2.0-style using ajax (like those boxes in facebook where you just type the names of the persons and it shows a autocomplete list).
    Luis

  • How to move multi select rows(records)from one datagrid to another datagrid completelly in flex4

    hi friends,
    I  am doing mxml flex 4 wep application i am using 2 forms, each form i am using datagrid,i am struck in this place,
    my proplem is, in first form i am having a grid with 10rows and columns,i am having 10 records and one move button. Next form also having a datagrid,
    need:
    IF i am doing multi select(2records) from the first datagrid and click move button means that records will show in the second datagrid and will also delete
    from the first data grid again it wont show the records in same datagrid.
    how to do this?
    any useful suggession or snippet code.
    thanks in advance,
    Cheers,
    B.venkatesan.

    One solution could be:
    Source to data grid is an Array collection
    1.> In first data grid extraxct the rows using, grid.selecteditem
    2.>Add it to the arraycollection attached to next grid, use arraycollection addItemat api if rows needed to ve added at particular index
    3.>Use removeitemat api to remove the items from arraycollection attached to first datagrid
    4.>call invalidate on bothe of the datagrids

  • How to disable Multi-selection thing in slicer.

    Hello,
    I am using Slicer in Excel Sheet and i want to disable Multi-selection thing in slicer.
    Is it possible to throw an exception or doesn't allow to do a multiple selection in excel slicer using VBA or without?
    Quick help ll be appreciated  :)
    Thanks & regards,
    Gaurav Badhani.

    Thanks for your reply,
    I used below given code and it's working and i put this code on ThisWorkbook and calling on
     Workbook_SheetCalculate
    Workbook_SheetSelectionChange
    it's working fine but whenever i am selecting slicer value using CTRL key this code is not excuting coz system is not able to call events
    Kindly help me with the events or code coz i am using CTRL key for multi selection and whenever i am using CLRL key it's not working
    Please find below given code
     Dim scl As SlicerCacheLevel
        Dim oSlicer As Slicer
        Dim i As SlicerCaches
        Set i = ActiveWorkbook.SlicerCaches
        Dim oSi As SlicerItem
        Dim ItemsAllowed As Integer
        Dim cntItems As Integer
        ItemsAllowed = 1
        cntItems = 0
        Application.EnableEvents = False
        For Each oSi In ActiveWorkbook.SlicerCaches("Slicer_RC_Description").SlicerItems
             If oSi.Selected Then cntItems = cntItems + 1
            If cntItems > ItemsAllowed And oSi.Selected Then
                oSi.Selected = False
                MsgBox "Please select only one item"
                Application.EnableEvents = True
                Exit Sub
            End If
        Next oSi
    Also tell me what event i should use for ur code or how can i use code using CTRL key
    Thanks & Regards,
    Gaurav Badhani
    A

  • How to make multi select list as dropdown??

    Hi friends,
    using apex 4.0
    i want to make multi select list as dropdown,how can i do this??
    thanks in advance.. :)

    mn123 wrote:
    using apex 4.0You MUST include the following information with every question:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    This cuts down on the need for a lot of follow-up questions or second-guessing. Appropriate solutions may differ according to any of these variables.
    i want to make multi select list as dropdown,how can i do this??Please define exactly what you mean by "multi select list" and "dropdown".
    Do you mean displaying a multi-select enabled select list as a drop-down list rather than as a list box? If so, this is not possible using standard APEX/web browser controls.

  • How to view ALL selected tracks in iTunes

    Simple question, I hope, but I've got more tracks on my iTunes than I can fit into my iPhone and I would like to be able to see how much memory my selected tracks take up, in total, not just by artist, before I try to sync.
    Is there anyway of viewing all selected tracks in iTunes?

    Create a new playlist using the command File > New Playlist. Drag the selected tracks into it. Open the playlist and look at the bottom to see the number of tracks, total size, and playing time.

  • How  to do, multi select drop down in struts

    Hi, I need an example of multi select drop down in struts.
    i m able to select multiple options by giving multiple="true" , but how can i set all these values to actionForm property to save in to the database.
    Thanks
    Naren.

    Hi, I need an example of multi select drop down in
    struts.
    i m able to select multiple options by giving
    multiple="true" , but how can i set all these values
    to actionForm property to save in to the database.
    Thanks
    Naren.In your action you need to call getParameterValues, which (if everything goes according to plan) will give you a String array of the values that were selected.
    Good Luck
    Lee

  • How to View Multi-Day Events on iPad Calendar?

    I am using the iPad, 3rd generation and new MacBook Pro Retina with Mountain Lion.  My "Home" calendar is synchnoized between the two with iCloud.  I have two options when entering multi-day events: enter them as an all-day event or enter them with specific start and stop times over multiple days.  I prefer to enter specific times because all-day events only appear as headers in calendar view on my Mac.  I prefer to see the times highlighted by the color of the calendar legend.  I often miss the headers when scanning days. 
    Here is my problem.  On the Mac, in Month view, multi-day events appears as a higlighted stroke over multiple days.  On the iPad, only the starting day of the event is highlighted.  All-day events do appear over multiple days, but I need the start times.  Is it possible to have multi-day events with times to appear as highlighted strokes over multiple days?
    Thank you,

    You are correct; as fair as i am aware apple should be giving us an option in the next couple of updates to keep longer history of iCal events;
    There is another way however it will more then likely cause double ups and errors: If you want the steps for that let me know.

  • How to make Multi Select Picklist Field Required Based on another field

    Hi,
    I want to make one filed which is Multi select Required(mandatory) based on certain value in another filed.
    I tried putting IIf([<FieldNAme>]> 1000 AND [<FiledNAme1>] IS NULL,"Invalid",[<FieldNAme>]) in the Field validatation as but it is not working.
    Please suggest any workaround available.
    Warm Regards
    Pramod
    Edited by: user11361975 on Jun 3, 2011 5:03 AM

    I guess FieldName1 is the multiselect picklist you are referring to?
    Where did you get the ITAG from? I don't see any multiselect picklists available in Expression Builder. I doubt whether you can set validations on multi select picklists at all.
    If anyone has achieved this please let me know as well.
    Regards,
    Udaya

  • AdvancedDataGrid / DataGrid on itemEditBeginning how to keep multi-select

    When I edit some field in DataGrid I loose all my multi-selected rows ,  is there built-in way to prevent edit events from clearing selected rows ?
    I understand that I can do it manually for example,  everytime I have a select event row I can save the selected indices so when I start editing I won't loose them and then I can re-select them on ItemEditEnd .
    But is there more simple way ?

    To select multiple rows, columns, or disparate cells, you must click, so you could save the selections then, so when the selections get wiped out in the UI you still might have access to them. But I think you are right, there's no easier way to do this.

  • How to view records as icons in several columns

    Hi
    I cannot find the way how to show report representing records as icons organized in several columns - similary as applications are shown if "Icons" view is selected in HTMLDB 2.0 development environnment homepage. No available report template did the job.
    Any suggestions?
    Thanks a lot :-)))

    Hi Vikas
    Thanks for the tip. It was interesting insight into HTMLDB internals....
    I'we found the way how to do the same job with a standard report template by building the SELECT in the following way:
    select col1,col2,col3,col4,col5
    from(
    select
    opportunity_name col1,
    lead(opportunity_name,1,'') OVER (ORDER BY opportunity_name) col2,
    lead(opportunity_name,2,'') OVER (ORDER BY opportunity_name) col3,
    lead(opportunity_name,3,'') OVER (ORDER BY opportunity_name) col4,
    lead(opportunity_name,4,'') OVER (ORDER BY opportunity_name) col5,
    case when mod(rank () OVER (ORDER BY opportunity_id) -1,5)=0 then 1 else 0 end endofline
    from opportunities
    order by opportunity_name)
    where endofline=1
    BTW: It's a tip for HTMLDB developers
    ============================
    What about to add the classical Windows File Explorer Viewer with "Small Icons/Large Icons/List Detail" display options as one of standard report templated???

  • FormsCentral PDF Form- How to View Multi-line Fields

    I have a FormsCentral PDF form, which allows users to fill out the form and save as a PDF. However, after receiving the completed forms, I am unable to see all the text in the multi-line field boxes without opening them and scrolling down. Since I will be sharing several of these competed forms with a review panel, please let me know:
    1) How to display the entire content of the multi-line field boxes rather than having the reader scroll down, then
    2)  How to save the completed forms so that its read-only when I send it to the review panel

    I can point you to some online information.  I really don't know the steps myself.
    This blog talks about how to do it in LiveCycle Designer: http://blogs.uoregon.edu/developments/2010/12/29/pdf-making-text-fields-grow-to-accommodat e-text/comment-page-1/
    You could also consider asking the user in this post for their idea on how to do it without making a dynamic form (LiveCycle): http://forums.adobe.com/message/4841774
    Is there a reason you don't use FormsCentral to collect the responses?  You could sign up for a 1-month subscription unless you have security or other reasons not to collect with FormsCentral, and then you'd be able to collect your responses and download each one as a PDF form individually and that form would be locked and have expanded text fields.  You could stop automatic renewal and you would still have access to the form and responses in your Free level account (but could not collect more than 50 responses, if you already have greater than 50 those would remain).
    Thanks,
    Josh

  • How to have multi select dropdowns for web request and adobe forms

    Hi All,
    I am working on interactive forms for CRM 7.0 using web request and ZCI layout.
    When I say web request we define the fields required for the form in CRM that becomes the context for WDA and passed onto Adobe form.
    This web request is a flat structure which mean if I have a node and attributes with in that you cant have multiple values to wards this node as in WDA.
    Now My query:
      I have a field called "xyz" since web request is a flat structure i just defined it as a string.
      In WDA I made it a enumrated field and added key value pairs to it.
      In Adobe form I binded this field to a WD native enum dropdown list every thing is fine untill here.
      Now in the form I need this as a multiple select, so i changed the dropdown field to list box it works.
      The form has to be submitted as a draft version when did so, it will not execute any APIs but saves the data to the web request.
      When the same form is opened for the next time, with the data in web request it should reopen this field with the multiple seleced values high lighted.
      since the field xyz is a single filed of string, how can i maintain multiple values in that...?
      if there is a form status auto save function in Adobe form this might solve a bit but not sure when the form is opened 2nd time from web reqest view does it consider it as a new one or open the same form...?
    I have such dropdown fields and problems including ones with depenedt values on one another.
    I tried my best to explain the problem, if somebody can help me with this its much appriciated.
    Note: Since this is dependent on CRM web request I am posting the same query in that block also apologies if this mean a duplicacy.
    Thanks & Regards,
    Sai

    I got the solution and problem is solved.
    Iterating & processing a enumrated dropdown is like any other dropdown /list box in adobe forms.
    Regards,
    Sai Krishna

  • Table View MULTI SELECT option and Event handling problems

    Hello All,
    I am facing problem while giving miltselect option in a table view. When i mention multiselect attribute in Select option in table view, i am unable to select all the rows which i want to select,because i have an event onRowSelection event activated so when i select a row then it will automatically go to the event and i am unable to do multiple select.
    Can you guys pl tell me is there any way thtat i can put check boxes in a table column and by that i can get values of row seelct and can perform my subsequent SQL operation.
    Also i am not able to navigate in table view through BYPAGE or BYLINE option. When I click on navigate button then page got refreshed and i lost data.
    One more query guys , can you pl tell me how can i store my internal table values from one event for the another event. I have used EXport/Import but internal table values get refreshed as page got refreshed on event switching/selection.
    Please respond.

    hye rahul.
      as i told you my second solution, will help you . the values remain in the corresponding UI elements.
    For example , you have a drop down and table view. both will trigger events. bind the data of the table at drop down event and bind the dat of the drop down at table event.
    event = cl_htmlb_manager=>get_event( runtime->server->request ).
    CASE event->id.
    when 'dd1'.                   drop down event is fired.
    bind data for drop down
    dd ?= cl_htmlb_manager=>get_data(
                                          request = runtime->server->request
                                          name    = 'dropdown'
                                          id      = dd_id'           " name of the drop down id
    along with drop down bind data for table view
        tbv ?= cl_htmlb_manager=>get_data(
                                          request = runtime->server->request
                                          name    = 'tableView'
                                          id      = 'tbv_id'           " name of the table view
    when 'tbv_id'.                   drop down event is fired.
    bind data for drop down
    dd ?= cl_htmlb_manager=>get_data(
                                          request = runtime->server->request
                                          name    = 'dropdown'
                                          id      = dd_id'           " name of the drop down id
    along with drop down bind data for table view
        tbv ?= cl_htmlb_manager=>get_data(
                                          request = runtime->server->request
                                          name    = 'tableView'
                                          id      = 'tbv_id'           " name of the table view
    This is how data should be binded in case of Stateless application. All the UI elemets must b binded again.. as the global data is refresed again.
    Hope this helps.
    Regards,
    Imran.

Maybe you are looking for

  • When I click on a website it opens a new tab or window with an advertisement

    When I click on a website, whether it be after doing a search to open a site or when I hit enter after entering a password or even just click on next to go to the next page, mozilla pops up a new tab or window with an advertisement in it. It has been

  • Getting Brain Error while saving the query--Need Immediate solution

    Hello Experte I designed query like this. G/L account structure is defined in Rows. Before explaining about columns Let me Explain u about my ORG structure. Company codes are defined in R/3 like this. Company Code 1000 for Local Currency(HSL01) 2000

  • Deploy JDBC driver for SQL server 2005 on PI 7.1

    How to deploy JDBC driver for SQL server 2005 on PI 7.1 We are in SAP NetWeaver 7.1 Oracle 10G Third party system is  SQL server 2005 There are different JDBC versions are available to download for SQL server 2005. I am not sure about the applicable

  • Touch screen doesn't always work

    When I am playing games it sometimes doesn't register my touches.  It is one week old.

  • Problem user

    I have a user with constant outlook issues. ie freezing and messages getting stuck in the outbox. We don't use roaming profiles, and this is the case on several freshly built devices. I've created a new mailbox - which hasn't made a difference so I'm