Please help me out with a Excel formula

willgyn

New Member
Joined
Jul 15, 2015
Messages
5


I'm developing a testing platform. I'm struggling to come up with a formula in Excel for the following tasks

  • Add Pass/Fail/Advisory dropdown list.
  • When Fail/Advisory selected from the dropdown list. The user will have to write a few lines about the outcome results. Then all the results then should be linked to a different Excel file (report page) where the outcome can be displayed and updated automatically.
  • The report page needs to be capable of being saved independently of any other pages which it is pulling data in from so we can email the report.
I can't find a formula which update a Excel sheet with data from different spreadsheets. All the should be done seamlessly without the user having to copy and paste any text.


Could anyone
please help me out. :)
I'm using Excel 2011 for mac






 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I select "fail" and a box pops up telling me to go to "outcome" sheet

on the outcome sheet are instructions to fill the next vacant row with relevant details, eg audit date, auditor, auditee, name of audit

assuming there are 5 non conformances, on a new sheet say "report" typing in the audit date and name of audit will bring up all the details to be emailed to auditee

would this approach meet your needs ?
 
Upvote 0
I have around 100 test. The results will change all the time the test is taken.

I just need a formula that when Fail and Advisory is selected all the user comments will be automatically save in the report sheet.

Sub Button4_Click()
q1_answer = Sheets("Create New Presentation").Range("G4")

a3_answer = Sheets("Create New Presentation").Range("H4")

row_number = 1
Do
DoEvents
row_number = row_number + 1
item_in_review = Sheets(“Sheet1”).Range("B" & row_number)

Loop Until item_in_review = " "


Sheets(“Sheet1”).Range(“B” & (row_number)) = a3_answer


End Sub

This is what I got so far. But I didn't get anywhere :p

thanks
 
Upvote 0
SO I AM DOING YOUR TEST, Q1 is what is 2+2 I put 3 my answer is compared to "correct" answer and the message "fail" comes up.

I am then invited to add comments, these comments are saved on a separate sheet ?? is this broadly correct ?
 
Upvote 0
Yeah, something like that.

Screen%20Shot%202015-07-15%20at%2011.04.59_zpsw6xtr9af.png
[/URL][/IMG]

I need the information from Description and Defect/ Comments when one of the options are selected.

so it looks like this one

Screen%20Shot%202015-07-15%20at%2011.05.51_zps3czetxa9.png
[/URL][/IMG]
 
Upvote 0
a macro to copy, paste, special, values B2 and G2 to the next row on your "analysis" sheet ? and then clear the user inputs
 
Upvote 0
x=cells(2,7)
y=cells(2,2)
Sheets("analysis").Select
Sheets("analysis").Activate
comment - assume cell T1 on analysis sheet is a count of rows used + 1

cells(cells(20,1),2)=y
cells(cells(20,1),7)=x
sheets("sheet1").select
sheets("sheet1").activate

comment put youe delete code here

its a start.........
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top