Capturing Value From One Userform To Another Or Macro Without Using Cell To Capture?

Oct 31, 2012

i have used two form and a macro in a workbook. First one captures data via text box. This data is captured in a cell. Form two adds a new sheet with the name that is captured in a cell, then perforns some task in the newly created sheet. Macro does the formatting of the newly created sheet and saves the sheet. Again when i reopen the the workbook the value is captured in next blank cell and the procedure follows. This works fine as far as there is a single. But not in case of multiple user at the same time. Is there a way to directly capture the value to form 2 and macro so that multiple user can work on the same time.

View 3 Replies


ADVERTISEMENT

Capturing Data: Capture Fleet No & Model From Book 1

Oct 22, 2009

find the attached file. Book 2 there is 4 columns ie,reg no,fleet no,product & model and on book 1 there is fleet no,reg no and model and what i need is to capture fleet no & model from Book 1.

View 2 Replies View Related

Capturing Data From Userform To Worksheet?

Aug 30, 2012

I have a macro that is starting to get pretty intensive and beyond my knowledge base. Currently is takes the needed data from sheet(1) and copies it to a newly created "Sheet2" in a specific format. Once the macro is done formatting "Sheet2", it shows both userforms for the next part of this macro.

One userform (UserForm1) is for inputting barcode data into rows on "Sheet2" (this is where I am running into problems). I cannot get the userform to capture the captions to the needed cells in "Sheet2".

The other userform (UserForm2) is for a visual representation of the error check. This will check for differences in Sheet2's column data. If a row's data in Sheet2 doesn't duplicate as expected it will flag RED and an image to show in the associated frame in UseForm2.

UserForm1:
Plate ID (PlateIDLabel goes to "PCR Plate ID" header column in Sheet2)
Plate Location (PlateLocationLabel goes to "PCRLocation" header column in Sheet2)

Currently the userform is coded to recognize prefixes for correct input into label textboxes.

Attached it the workbook with macro/userforms.

VB:
Option Explicit
Private Sub CommandButton1_Click()
Sheets.Add.Name = "Sheet2"
ActiveSheet.Move _

[Code]....

View 6 Replies View Related

Macro To Capture Data From A Specific Cell Upon Selection Changes

May 22, 2007

I'm trying to do is definetly simple to a lot of you, but I'm struggling on how to get started. I attached a workbook that clearly shows my work! I'm almost there but not quiet. Basically the user will be able to make a slection that will be used to lookup values from a different sheet. Each selection triggers a ranking number at the bottom (red pattern) in the worksheet. Now I would like to capture all scenarios and display the ranking.

View 4 Replies View Related

Capture Changes To Userform Selections When Compared To Initial Inputs

Jul 18, 2014

I'm trying to capture if any changes are made to a UserForms selections.

I initially load all the data from the database when the first user form is initialized, see code below

[Code]....

Once I have selected the corresponing record from the combobox , in this case Planning Number, then select the command button which runs the code below

[Code] .....

Now the user form frmProcessEngineeringTemp is opened, it now populates all the comboboxes, textboxes and option buttons in this form based on the planning number choosen from initial user form

[Code] ....

Once the user has finished with the user form the information from the form is passed to a worksheet via a command button. If changes to the user form selections were made i need to capture what has changed (if anything), from what was initially loaded into the second user form (frmProcessEngineeringTemp).

I have seen numerous posts from various sites that discuss Change and Exit events from a Class module and many instances where each combobox, textbox and option button is hard coded to capture changes.

Being that I have captured my initial inputs from the database thru the myVar 1 thru 40, can this be put into a string array and the current inputs/selections in the frmProcessEngineeringTemp put into a second array then compare 1 to another looking for difference, then output the differences to a worksheet for tracking purposes. At the same time if changes were indeed made i would increment the Revison record by 1.

View 3 Replies View Related

Macro To Capture Who Accessed The File

Aug 25, 2008

Anyone know of a way to capture who (user name, machine name etc.) had the excel file open when a certain cell is selected? a Macro?

Trying to use an Excel spreadsheet for a peer review where each reviewer accesses the Excel peer reivew file and enters the minutes they spent in the peer review but would like to also capture the user that had the file open when the minutes spent on the peer review were entered. This would provide proof that the actual peer reviewer opened the file and entered their minutes.

View 9 Replies View Related

Capture And Keep Cell Value?

Aug 1, 2012

I have a workbook where data is constantly changing

If two cell values become equal I want to capture and keep the value that was in another constantly changing cell at that time

The IF argument will only caapture the moment and then return to the IF False command

View 2 Replies View Related

Capture Some Characters Within The Cell

Dec 17, 2008

i have a long text in A1 field and i just need to capture some characters in between. Below is the example.

Raw Data:
Cell A1 (r1,c1) = Target: ABC, CustomerOrder, Results: BDE, LastUpdate: 12Dec08

I want to get the Result as below:
Cell A2 = Target: ABC Cell B2 = Results: BDE

Can this be done in Excel Cell format? Or do i need to do it in MS Access?

View 8 Replies View Related

Capture Just Last Name In A Cell Containing First Last And Sometimes Middle

Jan 10, 2013

I want to extract just the last name from a cell that contains the full name and put just the last into a seperate cell.

WHAT I AM DOING: i copy the contents of a internal screen onto a spreadsheet that i use to check various peices of info and calculations. when i save I like to save my sheet with the last name and then acct number. The internal system screen combines the customers names into a single cell. Right now i have to type the last name into a new cell and have a simple save macro that concatenates that last name with the acct number and saves it into the appropriate folder.

The field i am pulling from is always formatted with FIRST NAME then MI (IF PROVIDED) and then LAST NAME. So when i dump the screen contents into excel A20 may be MIKE SMITH, or MIKE T SMITH. so i need something that looks backwards in the cell and stops at the first space and dumps SMITH into another cell of my choosing (B1 in this case)

View 4 Replies View Related

Capture Timestamp Of Last Update Of Cell In A Row

Jul 5, 2012

How to modify this code so that I select only one column triggers the time stamp update? For e.g. if i make any changes in column A, the date stamp is updated in the corresponding cell in column B. Basically, I am trying to narrow down to only one cell in the row, but it should work for any row in the sheet.

Refer to the below post: [URL] ....

VB:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row > 1 Then Cells(Target.Row, "B") = Now()
End Sub

View 2 Replies View Related

Capture Cell Value Before Change Event

Mar 3, 2009

I am trying to capture the value of a cell before a change even. The attached Macro will report the value before the change but does not store it so that I can use it in another module. What I am trying to do is capture the value before the change and then look that value up in another worksheet (in the same workbook) so I can make the same change in the second workbook.

The values will always be in Column B and will always be string characters.

The code I am using for the change event is as follows: ....

View 8 Replies View Related

Periodically Capture Cell Values

May 6, 2009

I would like to know how to capture a cell value at a specific date each month in a situation where this cell can change value as it is a formula. For example, the cell returns a percentage that is derived from other data that can change regularly. It may be 45% today, but a user may alter other data in the spreadsheet and it could be 67% tomorrow (or any other percentage).

I want to graph a monthly trend of how this cell value changes by capturing the cells value on the 20th day of every month, or it would also be ok to work on a periodic snapshot of every 30 days.

View 5 Replies View Related

Capture And Display RGB Value Of Cell Interior

Oct 9, 2012

I'm trying to write a routine that will display the Red, Green and Blue RGB properties of a cell's interior colour.

I found the following function:

Code:

Function SingleColorFromRGB(colorWanted As String, RGBValue As Long) As Long
Dim rColor As Long, gColor As Long, bColor As Long
If RGBValue < 0 Then GoTo ReturnError
rColor = RGBValue Mod 256
RGBValue = Int(RGBValue / 256)
gColor = RGBValue Mod 256

[Code]...

How I should call this function in a worksheet, or failing that, come up with something better e.g. a message box that will display the numeric values of each RGB property for the selected cell, or a single cell worksheet name?

View 3 Replies View Related

Capture/Display Cell Formula

Apr 4, 2008

How do I capture a formula from a cell? I want to create a macro that takes each reference (let's say 'B4') and changes it to if(B4=0,0,B4).

View 8 Replies View Related

Using Scripting Directory To Capture Value Of Cell Before Change

Feb 13, 2014

I have date values in a range of cells, and have named the range "ChangeRange".

How would I:

1. loop through the range to store the current value of each cell in a scripting directory?
2. use vba to compare the values in that dictionary to the current value of the cell when it changes (NOTE: the change is by formula, not by manual insertion of a new value?
3. write that old cell value in the cell immediately to the right of the cell when it changes and update the dictionary value with the "new" old value?
4. do this for more than one range of dates on the same page?

View 2 Replies View Related

How To Capture Data From One Cell To Another Based On Another Cell Value

Apr 18, 2014

i am in need of the following.

A B C

9.30am 120 120
9.31am 119.9
9.32am 119.8
9.33am 121
9.34am 120.9
9.35am 120.8 120.8

Here A and B value is keep on changing from external source, when A1=9.30am, the B1 value 120, then C1 should capture the B1 value and stored in it. like wise it captured and stored for every 5 minit or as per requirement.

View 9 Replies View Related

Refresh Input Cell And Capture All Outputs From Each Loop

Jul 10, 2014

Assuming I have three worksheets:

1) input: col A has a series of product code (string)
2) calculation: where I want to automatically copy and paste each product code from "input" worksheet into "calculation" cell B4, and through many steps of calculations, return the outputs in cell B8 and B9 (parameters are numeric)
3) output: how to automatically record B8 and B9 from "calculation" sheet to this sheet Row 5 and 6 from each loop? (format of output doesn't really matters)

View 4 Replies View Related

Cell Activate Macro/userform

Oct 11, 2007

How do I make a userform or maco run when a cell is clicked on. For instance in my case if E20,E23,E30 are selected I want a userform to popup.

View 9 Replies View Related

Capturing Password ...

Apr 27, 2009

First, I know passwords are easy to break. The point is only to keep the average Excel user in a dept of 3 from accidentally damaging the data.

Normally I hardcode passwords to view xlveryhidden sheets.

But this workbook is for a dept head who has standard password(s) he uses to open or edit a file. I would like to capture these passwords and make it the same password(s) to view a hidden sheet.

This way if he ever changes the password to open/edit it will automatically change the password to view the hidden sheet(s).

View 7 Replies View Related

MATCH And Capturing The Error

Aug 6, 2009

In the help file for MATCH it says:

If MATCH is unsuccessful in finding a match, it returns the #N/A error value.

So I am trying in vain to capture the error, but can't see where I am going wrong.

View 8 Replies View Related

Capturing The First Change In A Formula

Feb 16, 2006

I have a spreadsheet that monitors the opening time of some stocks. In the
morning before trading starts it looks like this:

StockTIME
QQQQ-O2/15/06
AAPL-O2/15/06
GOOG-O2/15/06
CSCO-O2/15/06
SPY-A2/15/06

When trading starts, the TIME value records the time of the last trade, thus
the first time will represent the time of the first trade - I am trying to
capture this time value. The problem is that if another trade occurs, the
TIME value updates to the time of that last trade. The TIME value is fed by a
DDE link from a data source.

Is there a way to capture the "first" change in the TIME value ?

View 9 Replies View Related

Progress Bar Capturing Entries?

Feb 13, 2012

I have a worksheet which counts the entries of some orders via a barcode scanner.

What i would like to have is a progress bar showing graphically the percentage of completion of the progress.

For example in an 8 hour shift , 120 orders should be completed ideally.

The progress bar should show the actual status based on time and entries.

If the orders are processed on time the progress bar is green otherwise is red.

View 2 Replies View Related

Capturing Variable In Offset?

Jun 14, 2014

I am trying to make a program and in this program I am trying to use an offset. In that offset I want the column offset be = to a Integer variable I have created but I am getting the "red text".

How can I capture the weeknumber integer, entered into the input box as the second offset variable?

Dim ForumMember As String
Dim ForumMemberRange As Range
Dim ForumMemberLocal As Range
Dim WeekNumber As Integer
'worksheet and book activation
Workbooks("Trivia Point Account").Activate
Worksheets("Game 3").Activate

[code].....

View 5 Replies View Related

Capturing And Pasting Results

Feb 12, 2008

I have an excel model that cycles through several times and each time, changes the values in certain cells. What I want to do is to continuously add the values of each cell in my range and then paste the results on another worksheet.

My range of cells is B23:E93.

Say I want to run my model 3 times. I want to do the following calculation for each cell in my range and then paste the results:

First B23 = B23 (first value output)
Second B23 = New B23 + First B23
Third B23 = New B23 + Second B23

I then want to copy the results from the final run onto another worksheet named "All Resources." The range here would be B2:E72.

View 9 Replies View Related

Macro That Deletes Sheet With Control & Shows UserForm Causes UserForm To Disappear

Jun 15, 2009

This is weird - if you delete a sheet that contained a control then

a. showing a modeless userform resluts in a userofrm that goes invisible at subroutine End
b. public variables lose their value

These things do not happen if the sheet did not contain a control. Attached is an example file - put the inputfile.xls in your default file location (or add a path in the code) then open the ProblemDemo.xls and run the main macro to see it fal - isthis another Excelbug I've found?

View 9 Replies View Related

HLOOKUP - Multiple Matches - Capturing All?

Dec 15, 2005

I have some values representing daily values belonging to a particular Week number. The week numbers appear from 1 to 6 times in the top row. I would like to get data pertaining to a particular week number (as entered in B10) from the array in the area shown in Light Yellow and from there, I would do some minor calculations to arrive at the required data..

In the sample, the week number 3 appears 3 times and is shown here. The first value I am able to get using HLOOKUP. Getting subsequent occurrences are the issue I have. I thought I will try and use OFFSET function based on the cell reference of the first occurrence of the week number to obtain the rest. I have not had any luck in that.

Basically, my issue is how to use HLOOKUP to obtain if the Lookup value is repeated in the range. Or should this be tackled using some other route?

The week numbers appear in a sequence and are not placed at random.

View 9 Replies View Related

Button Used For Capturing Time (Timer)

Feb 8, 2009

When reading a water meter in a large apartment building a meter reader can also click a timer (LAP) button as the meter passes preset intervals. The worksheet would record the "lap times" in separate cells which could then be compared and usage figures can be calculated, allowing the meter reader to know if there is currently a Leak or other problem before leaving the premesis.

In the attached worksheet you can see what I would like the meter reader enters the reading - the light green "Interval List" is created from that reading. The Meter reader then watches the meter clicking the LAP button each time the interval is passed, the current time is then stored to the Pink cells (Similar to the NOW() function), the times are then calculated in other cells like I did in the Blue column in this case showing elapsed time.

I have tried several ways to do this using NOW, but each time all the cells are updated to NOW not just the current cell - and the Single Button woulod be really nice so the meter reader didn't have to look away from the meter.

View 2 Replies View Related

Capturing Keys When Workbook Is Open

Oct 19, 2009

How do I capture keys sent to Excel when my workbook is open / active?

I know when you write a macro you can assign a shortcut key combo to it, such as "Ctrl-Shift-s", but I can't find where / how Excel stores that information, and can only presume it is stored away not accessible to the coder, (ie. not by going via the macro -> properties boxes).

My issue is I want to capture a key combo, then from that call a function passing a variable dependant on the combo pressed, eg:

View 11 Replies View Related

Capturing All Randbetween Values In Different Cells

Oct 2, 2011

I need the solution for the following:

1. Currently I have a randbetween() formula in cell B2.

2. Cell A1 = B2 (Every time the value in B2 changes so does the value in A1)

Instead, I want that every change in value in cell B2 is captured in progressive cells.

For example:

First iteration in cell B2, value is entered in A1.

Second change in value in B2, value is entered in A2, while value in A1 remains unchanged and so on and so forth.

View 1 Replies View Related

Capturing Lowest Value Recorded In Data That Changes?

Jan 3, 2012

I run a golf handicapping system that utilises excel quite heavily to record a LOT data over the course of a season. In essence we have in excess of 50 players who play once or twice a week and I record their Stableford scores (dont worry that's a golfing phrase but it is basically how they performed that day) and adjust their golf handicap accordingly - all in XL.

So - a player may start the season with handicap of 20 but over the season this will vary up and down as each score is recorded. A player may well play in excess of 50 rounds in a season.

I currently record the player's starting handicap in one column and in the next column appears the freshly calculated new handicap after a new score has been entered. The column containing the new handicap overwrites the old handicap value each time it is recalculated.

All I want to do is to create a 3rd column that records the lowest handicap value attained during the season. So for each player I guess it should take the newly calculated handicap and decide if it is lowest it has 'seen' in that column and if it is record it.

View 9 Replies View Related







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