How do I view only fields with responses?

I have a logic question near that top that splits the form into 4 different possibilities...I want to only view fields that have actual data entered, not all of the fields from the other 3 possible questions that are empty...

Hi,
  I believe you are referring to the table of your collected responses in "View Responses" tab, is this right? if so, you can select "Filter" on the toolbar, and define your criteria in the filter dialog. Depending on how you would like your conditions to match you will select either ALL or ANY at this "Show only rows that matche ANY/ALL of the following:". To hide a column in the responses table,  you will have to do it manually, by selecting the column and clicking on the drop down arrow next to the letter on top of the column and select "Hide Column".  Please try out filtering and hiding column or either one and see which one works best for you.
If you are referring to the form filler seeing or not seeing certain fields based on the responses collected, then, we do not support this feature currently.
Hope this helps,
Thanks,
Lucia

Similar Messages

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How to convert a date field with format (dd,mm,yyyy) to format (mm,dd,yyyy)

    Hello.
    How to convert a date field with format (dd,mm,yyyy) to format (mm,dd,yyyy)
    I have text field which has a databind to a date field. When I click on it, we can select the date, it is added on the format (dd,mm,yyyy). When I want to insert this date field to a database It doesnu2019t allow me to do it because it will only accept date field on the format (mm,dd,yyyy)
    I tried to store this format on a date variable and I get a message saying that is impossible to convert a string into a date.
    Regards,
    Jose

    Hi Jose,
    usually you format strings in c# like
    string.Format("{0:yyyyMMdd}", insertyourstring);
    in your case
    string.Format("{0:MM/dd/yyyy}", insertyourstring);
    [look here|http://idunno.org/archive/2004/14/01/122.aspx]
    there are more details
    if everything fails split the string with Mid()
    or ask me
    lg David

  • How can I view presenter notes with slides?

    How can I view my notes with each slide and the audience only sees the slides?

    From the top menu bar:
    Keynote > Preferences > Presenter Display
    You should see a list of options.  Check the box next to "notes"
    That will let you see the notes on a dual screen setup.
    You can change the layout of the presenter's display by clicking on "Customize Presenter Display"

  • How can I view all images with Safari on my mac?

    how can I view all images with Safari on my mac? When I go to pinterest or any stock photo site I can only see some of the images on my mac.

    Please link to an example of a page you're having problems with. It should be accessible without a login.

  • How to make read only field in Task list?

    Hi All,
    How to make read only field in Task list?

    This can be done one of two ways:
    1. Customize the form in Infopath, right click your field and disable the control.
    2. Use JavaScript/jQuery on the page to disable the element.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • How to Map Proces form field with Resource form field?

    Hi,
    How to Map Proces form field with Resource form field while creating Process form in Form designer

    Are you talking about Provisioning ?
    then you do that in Data Flow under Process Defintion in OIM 10g
    In OIM 11g you use Request Dataset. In that you can directly map fields to process form.

  • How can I view a video with the extension .wlmp?

    How can I view a video with the extension .wlmp?

    Nevermind. Found wlmp reference elsewhere in these discussions.

  • HT204088 How do I view purchases made with my account without installing iTunes?

    How do I view purchases made with my account without installing iTunes?

    tBird:
    You will have to contact iTunes Store Support:
    http://www.apple.com/support/itunes/contact/

  • HT204088 How can i view purchases made with an itunes gift card?  All purchases were made from my phone.

    How can i view purchases made with an itunes gift card?  All purchases were made from my phone.

    The article from which you came has instructions on how to view your purchase history. Where in those instructions are you encountering difficulty?

  • How can I view only images tagged with specific upper level of keyword heirarchy, not including sub-levels?

    I use hierarchical keywords a lot.  For example, World/Europe/Austria/Tirol/specific location.  I sometimes assign only an upper level keyword (example: Austria) to an image when I don't know more specifics.  How can I then view only those images that have the tag that I select but not those with sub-levels of this keyword?  Exactly like choosing in Folders view to look only at a selected folder but not sub-folders.  There might be a complicated way to set up a smart collection that includes a keyword but excludes images with more than this number of keywords, but that would be really labor intensive.

    It's easy but quite obscure: In the Library Filter bar, select the Keyword column.  Then click the "properties" button on the right and select View: Flat.  Now tediously scroll through the list and select the desired keyword:

  • How to count ONLY fields with a specific value

    I modified the code below from the API reference to count combobox fields with a value of "MT" so I could total the number of a specific choice the form user input.
    var count = 0;
    for (var i=0; i<this.numFields; i++)
    var fname = this.getNthFieldName(i);
    if ( this.getField(fname).type == "combobox" && this.getField(fname).value == "MT" ) count++;
    this.getField("mTurb").value = count.value;
    Here's the problem: I tried to use a similar script, modified only slightly from this form, in another total field to tally a different choice made with comboboxes and the script continues to tally the first choice. An example of one of the modified versions of the script is below.
    var gcount = 0;
    for (var i=0; i<this.numFields; i++)
    var gname = this.getNthFieldName(i);
    if ( this.getField(gname).type == "combobox" && this.getField(gname).value == "MT" ) gcount++;
    this.getField("gPack").value = gcount.value;
    I suspect I'm just missing something painfully obvious to seasoned scripters, but I can't seem to figure it out and I need this script to be able to count the number of 9 different options in the comboboxes.

    OK, you can use a script like the following as the custom calculate script for the text fields that perform the counts:
    // Custom calculate script for text field
    (function () {
        // Declare and initialize variables
        var fn, s = "MT", count = 0;
        // Loop through the combo boxes
        for (var i = 1; i < 25; i++) {
            // Determine the current field name
            fn = "M" + util.printf("%02d", i));
            // See if the field value matches
            if (getField(fn).valueAsString === s) count++
        // Set this field value to the count
        event.value = count;
    Change the value of the "s" variable to match the item that you want to count. The first and last lines prevent the unnecessary creatio of global variables, which is good. It also makes it easy to transfer to a more general document-level routine, which would be event better, something like:
    // Custom calculate script for text field
    function getCBCount(s) {
        var fn, count = 0;
        // Loop through the combo boxes
        for (var i = 1; i < 25; i++) {
            // Determine the current field name
            fn = "M" + util.printf("%02d", i));
            // See if the field value matches
            if (getField(fn).valueAsString === s) count++
        // Set this field value to the count
        event.value = count;
    You would then call this function from the individual text boxes with the following custom calculate script:
    getCBCount("MT");
    and replace "MT" with the vlaue you want to count.

  • How can I view only a subset of my contacts in iOS?

    I have a large number of contacts.  I sync my contacts with iPad, iPhone, and Mac Contacts.  How can I group my contacts, then choose to view only one group?
    I see how to create groups in OSX, although it is a little tedious to begin with to create a field for grouping for each and every contact.  But I cannot see how to use these groups in iOS7, or maintain the grouping field, or view only a subset of all accounts.  My goal is to create a group of personal contacts, like favorites, then see only those contacts by default but have access to all contacts if I need to.

    How can I select only a portion of my screen to be recorded with QuickTime?  I've seen this as an option online but can't figure out how to make the program able to highlight a certain area of my screen to be recorded.
    If you are still using Snlow Leopard, then you can't. This functionality was added to QT 10.1 which runs under Lion.

  • How can I view only UNSAVED images/metadata?

    I rotate photos in bridge, but these metadata changes are not saved to the actual image until saved in Photoshop. If I missed saving a few photos during my initial steps, how will I know which photos still need to be saved if i can only see the modified files? I need to give final images to client and if the changes aren't saved, all the photos will be oriented wronged. is the only way to resave the entire folder with image processor? is there a way to view only unsaved files so only those need to be processed? i don't want to resave files unnecessarily - both for time's sake and for quality sake.  In Lightroom there's an option to save metadata changes to file automatically. And even in Google Picasa, you can just hit save to save all modified files.
    It seems there's no save button in Bridge and no way to know which files need to be saved. Can somebody help me out with this please?

    and i will add that i think it's a huge flaw to not have an option to save/export files properly. sure, professionals prefer metadata because it does not affect the original. but software developers have to remember that professionals have clients. and clients need their things to work out of the box. i don't want to field technical support calls for avoidable circumstances.
    (stationtwo - i feel you didn't read the orignal post; i'm really not sure where i'm losing you. do you not understand that professionals have NON-professional clients? we scan and edit family photos using Bridge and Ps to create a final product given to home users.that final product (a DVD filled with their edited family photos) needs to be compatible with all platforms OUT OF THE BOX! it's like giving someone their movie on a DVD+R which won't work in an older DVD-R player. DVD-Rs are more compatible. It's stupid to tell a client they need to buy a new DVD player. It's the professionals' job to make sure that their clients don't run into these issues. and it's the software developers' job to have the foresight to prevent compatibility issues in the first place. )

  • Can no longer select text in email template or read only field with mouse using IE or Firefox?

    Hi Guys,
    I can no longer select text in email template or read only field using my mouse in IE or Firefox anymore. We are using CRM 2011 rollup 18 applied with IE 11 and the latest version of Firefox. We only applied roll up 18 in Feb when this issue began.
    Thanks
    Dave
    David Kelly

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    These features rely on JavaScript, and it sounds as though you have scripting enabled if you get (the wrong) color changes. Some add-ons might alter the way scripts operate, so a standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in Firefox's Safe Mode ([[Safe Mode]]) using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If those features work correctly, this points to one of your extensions or custom settings as the problem.
    To also disable plugins, you can use this page:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Plugins category
    Any change?

Maybe you are looking for

  • To Customer Service

    This question is directly to Verizon Wireless Customer Service: I recently had to cancel my contract because my husband is in the military and we have been stationed overseas. We went in with his official orders and received receipts that each of our

  • Install solaris 10 in RAID 5

    Hello, I'm french, I can't install solaris 10 on a card IEI IMBA-XQ354, I want to make a RAID 5, It as a storage intel 82801 sata raid controller, I think i have not the driver, so, where can i get it ? Thanks, GGA.

  • Need to Allow Certain Third-Party Applications via MDM

    I just deployed a computer lab of iMacs and Minis and am using Yosemite/Server 4 to manage them. All computers are running 10.10.1 I Profile Manager>Restrictions, I want to allow users to use many native OS X applications but additionally I need to a

  • I can barely hear people talking or voicemail

    When talking on the phone i can barely hear people when they talk. This is also true with voicemail. Phone is just over a year old and has never been dropped. volume button is all the way up How do i fix this?

  • Premiere Elements 9 troubleshooting

    I have a Dell Vostro 3500 notebook. (Intel Core i5, Quad, 64-bit, 4G RAM) Running Windows 7 Professional 1. I recently purchased Adobe Premiere Elements 9 and also registered my copy via the Internet. When I open the programme, I continuously receive