Can responses from 2 forms (Spanish and English) be merged into one?

2 separate forms were created of a survey, one in Spanish and one in English.  I want to report on the data all together. Is there a way to merge the data from these surveys to be able to create one report?

Welcome to the Apple Community.
You can't merge accounts but there may be some things you can do, what exactly are you trying to achieve by merging accounts.

Similar Messages

  • I have two accounts and need to merge into one account. How? Where to even ask this question? Chat will not assist in this.

    Over the years I accidentally opened a second Adobe account, both with product registrations. I need to merge these accounts into one and see no way to do that. Updates to software will not install because serial for previous version not found on upgrade versions now installed. Could the 2 different accounts be a cause for this?  I got no help at all from chat.

    Adobe chat support is likely to be the only resource capable of dealing with your account.
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Adobe ID and registration chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-c1.html ( http://adobe.ly/19r6ZDp )

  • Live in Two States with two ISPs and need to merge into one account

    Surely I'm not the only one with this problem. And, I'd love to ask an Apple person, but I can't find the proper "contact us" phone or email! I'm 53 years old and not computer savvy. I first set up an itunes account on my computer in Reston, where it still resides in our house. Then, we got a small condo in NC and I set up itunes here. Except that it wasn't the same account I guess b/c it had none of my songs in it. So now, I have two sets of songs that I've bought in two different states and OF COURSE, now we're selling VA and going to be in NC full-time. I'd just like for Apple to tell me how to put the VA account and songs into the NC one so they'll be together. ARgh. Thanks for reading anyone. Abby

    Why do you have two account? There is no need for this. An account is just an id and password that you use to purchase music. You can use that account on any computer that has itunes.
    Your itunes library resides on your computer. You buy ONE download of a song. It is then up to your to back it up (in case of loss or crash) and to move it wherever you want it. Just like a cd. If you want that cd in another place you would have to take it there or make a copy and take the copy.
    Use your backup copy to move whatever music you like wherever you like, or copy to cd, dvd, external drive, flash drive, etc and move it to whatever computer you like.

  • Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    I have the 6500A without plus and it is with a LAN cable connected with my Router.
    First make sure you have the latest printer firmware installed.
    Next restart the printer and the Router.
    I had the same. Problem but it went away after rebooting the Router.

  • I want to send a response from the servlet and then call another servlet.

    Hi,
    I want to send a response from the servlet and then call another servlet. can this happen. Here is my scenario.
    1. Capture all the information from a form including an Email address and submit it to a servlet.
    2. Now send a message to the browser that the request will be processed and mailed.
    3. Now execute the request and give a mail to the mentioned Email.
    Can this be done in any way even by calling another servlet from within a servlet or any other way.
    Can any one Please help me out.
    Thanks,
    Ramesh

    Maybe that will help you (This is registration sample):
    1.You have Registration.html;
    2.You have Registration servlet;
    3.You have CheckUser servlet;
    4.And last you have Dispatcher between all.
    See the code:
    Registration.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
      <HEAD>
        <TITLE>Hello registration</TITLE>
      </HEAD>
      <BODY>
      <H1>Entry</H1>
    <FORM ACTION="helloservlet" METHOD="POST">
    <LEFT>
    User: <INPUT TYPE="TEXT" NAME="login" SIZE=10><BR>
    Password: <INPUT TYPE="PASSWORD" NAME="password" SIZE=10><BR>
    <P>
    <TABLE CELLSPACING=1>
    <TR>
    <TH><SMALL>
    <INPUT TYPE="SUBMIT" NAME="logon" VALUE="Entry">
    </SMALL>
    <TH><SMALL>
    <INPUT TYPE="SUBMIT" NAME="registration" VALUE="Registration">
    </SMALL>
    </TABLE>
    </LEFT>
    </FORM>
    <BR>
      </BODY>
    </HTML>
    Dispatcher.java
    package mybeans;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletException;
    import java.io.IOException;
    import javax.servlet.RequestDispatcher;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Dispatcher extends HttpServlet {
        protected void forward(String address, HttpServletRequest request,
                               HttpServletResponse response)
                               throws ServletException, IOException {
                                   RequestDispatcher dispatcher = getServletContext().
                                   getRequestDispatcher(address);
                                   dispatcher.forward(request, response);
    Registration.java
    package mybeans;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Registration extends Dispatcher {
        public String getServletInfo() {
            return "Registration servlet";
        public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            ServletContext ctx = getServletContext();
            if(request.getParameter("logon") != null) {          
                this.forward("/CheckUser", request, response);
            else if (request.getParameter("registration") != null)  {         
                this.forward("/registration.html", request, response);
    CheckUser.java
    package mybeans;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class CheckUser extends Dispatcher {
        Connection conn;
        Statement stat;
        ResultSet rs;
          String cur_UserName;
        public static String cur_UserSurname;;
        String cur_UserOtchestvo;
        public String getServletInfo() {
            return "Registration servlet";
        public void service(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            try{
                ServletContext ctx = getServletContext();
                Class.forName("oracle.jdbc.driver.OracleDriver");
                conn = DriverManager.getConnection("jdbc:oracle:oci:@eugenz","SYSTEM", "manager");
                stat = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
               String queryDB = "SELECT ID, Login, Password FROM TLogon WHERE Login = ? AND Password = ?";
                PreparedStatement ps = conn.prepareStatement(queryDB); 
               User user = new User();
            user.setLogin(request.getParameter("login"));
            String cur_Login = user.getLogin();
            ps.setString(1, cur_Login);
            user.setPassword(request.getParameter("password"));
            String cur_Password = user.getPassword();
            ps.setString(2, cur_Password);
         Password = admin");
            rs = ps.executeQuery();
                 String sn = "Zatoka";
            String n = "Eugen";
            String queryPeople = "SELECT ID, Surname FROM People WHERE ID = ?";
           PreparedStatement psPeople = conn.prepareStatement(queryPeople);
                      if(rs.next()) {
                int logonID = rs.getInt("ID");
                psPeople.setInt(1, logonID);
                rs = psPeople.executeQuery();
                rs.next();
                       user.setSurname(rs.getString("Surname"));
              FROM TLogon, People WHERE TLogon.ID = People.ID";
                       ctx.setAttribute("user", user);
                this.forward("/successLogin.jsp", request, response);
            this.forward("/registration.html", request, response);
            catch(Exception exception) {
    }CheckUser.java maybe incorrect, but it's not serious, because see the principe (conception).
    Main is Dispatcher.java. This class is dispatcher between all servlets.

  • How to install photoshop cc in several languages, Spanish and English

    How to install photoshop cc in several languages, Spanish and English, I've searched the forums, and I have not been able to make or find would be so kind as to explain how I can do, thank you very much

    In
    Re: Change language?
    PECourtejoie posted this Link:
    Installing Multiple Languages of a Desktop Application | CS6 & Creative Cloud Feature Tour for Design | Adobe TV

  • I can airprint from my macbook and imac but not my iphone and ipad, whats wrong?

    I can airprint from my macbook and imac but not my iphone and ipad, whats wrong?
    I'm aware that all printers are not airprint enabled but since i can print form my imac that should not be a problem right?

    Hey Fredrik68,
    I would double check and see if you meet all the requirements for AirPrint here, including the printer model:
    AirPrint Basics
    http://support.apple.com/kb/HT4356
    Have a good one,
    Delgadoh

  • Gramatical corrector in spanish and english

    How do I install a grammatical corrector in Spanish and English, so when I'm writing a MSG or in Words I can correct the spelling, right now it only works in English

    GGo to the system preferences for Speech and change the System Voice to an English one.

  • E55 Spanish and English

    I'm not allowed to discuss how to get my phone working with Spanish and English here (there's a certain product code that you change to do it). 
    So my question is, 
     how do I get my phone working in Spanish. 
    I wasn't told this when I bought it. It cost me £200 and now 4 months down the line when I come to use the second language I find it doesn't write in the language I need. 

    To get any language that did not come with the phone originally, you will have to take it to a Nokia Care point to get it installed. Only Nokia care points can install additional language packs. It might cost a small fee.
    What youre planning to do will void your warranty and may also damage your phone. I suggest you don't do it.

  • Why U. S. Store refuses my Visa card with it's official and with the global science I can buy from Bahrain store    and now my account stoped with reason owe ..

    Why U. S. Store refuses my Visa card with it's official and with the global science I can buy from Bahrain store    and now my account stoped with reason owe ..

    You can ONLY use the itunes store of your country of residence ( proven by the billing address on your credit card) AND ONLY while you are physically located inside the borders of that country.
    You would have to live in the U.S and physically be located in the U.S in order ot use the U.S tunes store.  The same is true for each countrys itunes store.

  • I have an external hard drive with a shared music folder, which I can access (from Home Sharing) and play music on my Windows computer. On my new Mac, I can see the drive in Home Sharing but not play any music. What's the solution?

    I have an external network hard drive with a shared music folder (WD MyBookLive), which I can access from Home Sharing and play music on my Windows computers. On my new Mac, I can see the drive and the music in Home Sharing but the tracks will not play. All the other authorized computers in my home network show up in Home Sharing and I can play the content. What's the solution?

    Troubleshooting Home Sharing - http://support.apple.com/kb/TS2972

  • I try to open I photo and  I get the message, your iPhoto library is damaged...please restore from backup. But i din't made backup copy. How can i delete previous library and work wrom the new one?

    I try to open I photo and  I get the message, your iPhoto library is damaged...please restore from backup. But i din't made backup copy. How can i delete previous library and work wrom the new one?

    Try this (assuming you're using iPhoto 12): make a temporary, duplicate copy of the library and try the three fixes below in order as needed:
      Fix #1
    delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    delete iPhoto's cache files that are located in your Home/Library/Caches/com.apple.iPhoto folder.
    reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key.  You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library.
    Select options #1, #2 and #6. 
    Fix #3
    Rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Where we can assign the form J_1IEWT_CERT and program

    where we can assign the form J_1IEWT_CERT and program which we customized for the standard program J_1IEWT_CERT (name same as the form name ) .
    Can anybody please tell me I did the customization for both the form and the program now where I can assign them.
    ****the form is used for TDS certificate
    Regards
    Mave

    In the NACE tcode select the application and then click on output types and then select the output types and then processing routines.

  • I cannot print from web pages with mozilla, can print from internet explorer and all other programs. I have a Cannon Imageclass MF8100.

    I cannot print from any web pages with Mozilla as my browser. The printer gives me a blank page. I can print from internet explorer and all other programs. I have a
    Cannon Imageclass MF8100 printer. I spoke to Cannon as I thought it was a Cannon issue and it is not.

    Try the '''''reset''''' described here: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

  • Should display both Spanish and English lang. at a time in BEx analyzer

    Hi All,
    I need to display both Spanish and English lang. in Bex analyzer.
    InfoObject is language dependent.
    Ex: For material it should display description in Spanish and English at a time.
    Am only able to display one at a time.
    Please suggest.
    Regards,
    Sandeep.

    Hi Sandeep,
    As Kodandapani mentioned it’s not possible to display both languages same
    time as its mapping to same T table where LANGU is part of key.
    I recommend you to create an attribute or maintain another table for other
    language to display at a time.
    if anybody get any better ideas then pl share.
    Regards,
    Naveen Kencha

Maybe you are looking for