Survey Form - How To Open Another Thread

Jan 2, 2013

how to open another thread. I would like to do a survey form (as attached) but I wanted to use VBA to make it easy to compute the result.

View 2 Replies


ADVERTISEMENT

Analyzing S Survey Form

Apr 20, 2013

I would like to analyze a survey form.

See attached example : survey.xlsx‎

I am trying to display a total of answers per question and transform that into a grid for easy reporting but am not sure how to do it.

View 2 Replies View Related

Survey Form With More Than 2 Options

Apr 10, 2014

I followed a youtube video on setting up a survey in excel, and it works great, but it was only for two options. I wanted to make it 5 options per question, but when I started adding to the code ( which I thought was correct, but was not ) I kept getting errors. It probably is a simple addition. How to make the survey options more than two?

There are three tabs. The first tab (Start) only has a button that leads to the QA Survey. The Second tab has the questions and answers. The third tab as three columns in it as well for the name of the person, question number, and answer choice.

Here is the code inside the form (QASurvey):

Code:
Private Sub button_next_Click()
''confirm there is a name
If TextBox1.Value = "" Then
MsgBox ("Please enter your name")
[Code] ...

Here is the code in Module 1:

Code:
''global variables
Public info() As Variant
Public results() As Variant
Public questionnumber As Integer

Here is the code on the sheet that has the button to start the Survey Form:

Code:
Private Sub Start_Button_Click()
QASurvey.Show
End Sub

View 5 Replies View Related

Pull Only Date From Thread?

Jul 11, 2014

pull out just the date from this thread: 01/01/14 0919

View 5 Replies View Related

Mark A Thread Closed?

Feb 13, 2009

how do i mark a thread closed? I looked in tools and lots of other places?

View 4 Replies View Related

Card Count Thread

May 7, 2009

btw i saw following soloved post but i didnt get the question and answer.

can u provide examples?

http://www.excelforum.com/excel-misc...ard-count.html

View 2 Replies View Related

Keyword Finder - Using An Old Thread For A New

May 5, 2009

I am similarly interested in using the logic in this thread http://www.excelforum.com/excel-prog...uplicates.html

Basically I want to be able to type in a keyword and then bring up a number of matching results along with their associated code.

Using the spreadsheet in the above thread, I tried to add an extra entry as a test, as my database contains roughly ~1500 entries, but excel doesn't seem to like me adding 1 more entry and adjusting the dimensions of the code?

View 2 Replies View Related

How To Attach A File In New Thread

Sep 22, 2013

I have found no option here to attache file (excel, or word if any). How to attach file in to create a new thread ?

View 1 Replies View Related

Position Of Latest Thread

Nov 4, 2009

XYZ001

XYZ002XYZ003

XYZ004XYZ003XYZ004XYZ001XYZ002XYZ004

I have data in above format (including Dup). Is there anyway I can get the postion of latest entry. say if it is xyz011, it should return 8. Match will start counting from first cell and go downward. How can do a inverse counting?

View 9 Replies View Related

Select Row To Open Form

Jan 13, 2010

Am having some trouble expanding the range of this macro, I would like it to go from A5:AA5 so when someone double clicks the cell the form will open for this row.

View 5 Replies View Related

Form Pop-up, When I Open An XL Workbook

Jan 26, 2010

I kindly would like to have a form pop-up, when I open an XL workbook.

Once, then the user clicks OK, and all sheets are shown.

View 14 Replies View Related

Button To Open Entry Form

Mar 23, 2014

Excel has a built in data entry form window which is opened from the ribbon, how can I create a button which opens this form for a specific table on the worksheet. It should allow the user to create or edit entries in the table. I tried creating a macro to select the data range and open the form, but this returns an error.

View 3 Replies View Related

Auto Open User Form

Sep 29, 2009

If i have a userform: frmUpdateInfo

How do i have it auto open or at least be ready for use when going to a particular sheet in a workbook (Sheet name: "Matches")

View 6 Replies View Related

Use More Rows To Open User Form

Jan 15, 2010

Am working on a spreadsheet which has two sheets, one for the visual interface and another for the data, the data is displayed on a form, the form is opened by clicking on the cells.

Currently this is working for the top row of A5 to AA5 or 1-001 to 1-024, however when I try to include A8 to AA8 or 1-025 to 1-048 it fails.

See attached spread sheet for code
The problem parts are in;

Sheet1(Layout)
Private Sub Worksheet_BeforeDoubleClick.......

Form (Ports)
Private Sub UserForm_Activate()

How to include A8:AA8 and more when needed?

View 6 Replies View Related

Open Only The User Form ... Or Close Everything

Mar 22, 2006

Assume that the workbook Book1.xls opens a user form named myUserForm.

I'm trying to show only the user form on the desktop when I open Book1.xls, with Book1.xls minimized on the Taskbar.

And , if the Cancel button on the form is clicked, then unload the form and close Book1.xls.

That simple!

In ThisWorkbook, I have the event:

Private Sub Workbook_Open()
ActiveWindow.WindowState = xlMinimized
ShowTheForm
End Sub
On the Form, I have the Cancel button:

Private Sub btnCancel_Click()
Unload Me
ThisWorkbook.Close True
End Sub

The above procedure shows the form, with Microsoft Excel blank window in the background, and produces a small bar at the bottom left of the screen for Book1.xls
Click the Cancel button, and both the Form and Book1.xls close, but the blank Excel window remain open !

I suppose I would not be able to edit this version of Book1.xls, but that is fine for now!

View 9 Replies View Related

User Form At Workbook Open

Aug 2, 2008

How to display the userform when the workbook is opened?

View 9 Replies View Related

Form Not Working If Other Workbooks Are Open

Mar 24, 2009

I've been developing a form in excel (not userforms, just the usual conditional formatting, validation and macros to show/hide rows etc). It all works fine now except one thing was noticed when a colleague was testing it. If she opens the form from the email, and she already has excel open, then the form will not work when she makes a selection from the dropdown list, which unhides the rest of the form. If she closes down all of excel and opens the form from fresh, it works fine.

View 9 Replies View Related

Change A Thread Message Format To Html?

Jan 11, 2009

If it is possible to do, how do I change this message format to html so that I can paste an image into the message?

View 5 Replies View Related

Cell Click Event Open The Form

Apr 23, 2008

Is there a way that when a cell is clicked in a worksheet. that I can get a user form to open?

View 9 Replies View Related

Closing 1 Form Closes Both Open Forms?

Oct 9, 2012

I have 1 main userform and I need to open another userform using a command button from within that 1st form. The 2nd userform appear right in front of the 1st userform. When the 2nd userform is closed either via VBA or clicking on X, it closes both forms.

why this happens and how I can make only the 2nd form close when it is finished with?

View 3 Replies View Related

Open Data Form When Sheet Is Selected

Dec 13, 2006

I have a file with various tabs One of them is called "database"

What I would like is for the "DATA"/"FORM" to automatically open when the sheet is clicked on

View 9 Replies View Related

Excel 2010 :: Open Form From Worksheet Control Button?

Aug 5, 2013

Excel 2010. How/where to define userform object?

Button on worksheet has following code:

Sub Button1_Click()
Load UserForm1
UserForm1.Show
End Sub

Execution of this code generates following error:

Run time error 424
Object required

How/where to define userform object?

View 1 Replies View Related

Open Form In Excel - Runtime Error 424 Object Required

Oct 27, 2011

I am using this code to open a form in Excel:

Code:
Private Sub Workbook_Open()
Form1.Show
End Sub

It has worked perfectly for about 2 weeks, well now when I go to open the workbook it gives me the debug error of Run Time error 424 Object Required. I last ran this today at about 8 a.m. no errors, but now about 4 hours later, it is bugging out. What is causing this?

View 3 Replies View Related

Rank Questions In A Survey

Nov 7, 2006

I am trying to rank questions within a survey with excel calculations and not VBA. The rank would take place for each individual section and would provide the top three right questions and top three wrong questions. The example below explains the ranking.

Brief facts:
Each survey has up to 30 sections.

Each section has up to 150 questions.

Each question has none or no limt of sub-questions.(usually between 1 and 20, weekly changes require this number to change)

The section's number of questions change weekly with updates.

This week section 2 begins with #12, next week begins with #16 because more questions were added to section 1.

There are three possible choices to answer a question (yes, no, or n/a.)

Sub-questions are checkboxes of explanations on why the question could be answered wrong.

Each question may have 0-10 points assigned.

Each sub-question may have 0-10 points assigned.

When a question is answered "no" is when a sub-question may be checked to help explain why.

A question with sub-questions may only be assigned points at the sub-question level. The sub-questions have the points and do not sum up to total the question value.
When a question is answered "no" and a sub-question is checked, the points received are 0 points for that sub-question. Unchecked sub-questions receive the full amount of points.

When a question is answered "yes" all points are received.

The Rank:

The rank would take place for each individual section and would provide the top three right questions and top three wrong questions at the question level. My example below has more than three to help explain further.

Select the highest actual score of question or sub-question. Start with 10 points to 0 points.

When a match is found that becomes the first "correct" question rank. #17 is 1 since 17.1 had an 8 point sub-question.

When there is a tie #14,15,18, the tie breaker is the sum of correct sub-questions added to the question score. #14 = 7 points.

The second sort is the # in ascending order #15 and then 18.

The hardest part of the rank is the flexibility of a changing survey with question/sub-question deletions and additions in each section. ...

View 10 Replies View Related

Extract Data From Survey Checkbox

Dec 11, 2013

I have a survey/form that was created in excel, and that is answered in excel. I am required to extract the data into a worksheet for each response received. I am able to pull the text that is entered, however i am having trouble pulling through the info from the checkboxes. So if a checkbox is ticked i cannot pull that through?

View 1 Replies View Related

Survey Collection - Up / Down Spin Buttons

Jul 10, 2014

I'm creating a spreadsheet to collect survey data and how I have it set up is this:

Question 1 is a simple yes/no/maybe question - it uses an ActiveX spin button that the user presses up/down to increase/decrease the total. It looks like this:

Private Sub Yes_SpinUp()
With Range("C3")
.Value = WorksheetFunction.Min(15000, .Value + 1)
End With
End Sub

Private Sub Yes_SpinDown()
With Range("C3")
.Value = WorksheetFunction.Max(0, .Value - 1)
End With
End Sub

Cell C3 is where I keep track of how many people answered yes

The button is called "yes" under the button properties

So basically, I have one privatesub for spinning the value up and down. It works fine and is easily copy-paste-able for other answers, it just takes up a lot of space. I'm wondering if there's code I can write to handle the up/down in one sub. If not, i'll stick with what I have.

View 6 Replies View Related

Analyzing Survey Data In Excel

Apr 6, 2010

After survey questions and responses are in excel, how do you analyze this data using a correlation matrix and regression analysis for reporting or testing hypotheses?

View 3 Replies View Related

Sort Survey Data In Excel

Apr 4, 2013

I want to analyze a survey which I made. Below you see an example of how I structured the answers.

Now I would like to rank the answes (rows 2-6) in a list according to often each item was mentioned.

I could do transpose the data manually and delete items which were mentioned various times. However, since it was a pretty big survey, it would take to long. Is there a formula to do it?

Original:

Person A
Person B
Person C

Water
Water
Sugar

Washing
Washing
Pasta

Boxes
Milk
Water

Frozen
Vegs
Fish

Cleaning
Cheese
Water

Example of how it should look like:

Water
3 (times mentioned)
100% (because everone mentioned it)

View 3 Replies View Related

How To Organize Survey Data That Has 2 Choices

Nov 17, 2013

I did a survey of what kind of clothes people like to wear and why. So there are two things that people have to write down. ex) jeans and cus they're comfortable / shirts and cus they look good

The data that I received was organized as followed

I just put in random things just so you can get the idea of whats what

Id
jeans
shirts
cardigans

[Code].....

Okay so what I want to know is how I can get the responses from the data spreadsheet I showed you before into this organized data table above.

View 3 Replies View Related

Number Plate Survey Normalization

Mar 29, 2007

I have a list of vehicle number plates (or License plates for some of you) that have been recorded on a video camera and then converted to a text file using recognition software.

Unfortunately the records are far from 100% accurate so any data manipulation (travel times between points etc) becomes a bit dodgy and clumbsy to allow for this. I want to keep all of the data entries but need to identify each vehicle with a little more accuracy. I'm not worried about whether the plate number recorded is correct, only that it is the same for each instance that a particular vehicle is recorded.

The data comes in looking roughly like this:

ABC123
DEF456
AC13
A123
DE56
DEF56

I would like it to look like this:

ABC123
DEF456
ABC123
ABC123
DEF456
DEF456

Or even this:

AB123
DF45
AB123
AB123
DF45
DF45

It doesn't matter which of the above or any other compination as long as there are at least 4 characters.

The surveys are taken over up to a week so there are generally about 5000 records for each time slot that need to be processed.

I have tried to modify the Fuzzy matching functions with no success.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved