3 Layer Relationships - Vba? Use Access Instead

Oct 24, 2008

hi trying to vreate a table for user to upload data. some fields have a relationship and can only select ceratin things from a list dependent on what the previous columns selection is.

Column A selects from defined list 'animal' -cat, dog, mouse

Then if they select "cat" columc c uses define list 'cats' = siamese, persion, mungrel

but if they select dog it will force use of defined list 'dogs' = poodle, labrador, mungrel...

but i then need to add a third layer to this!!!! THIS IS WHERE PROBLEMS BEGIN!

2 layer is fine for : http://www.contextures.com/xlDataVal02.html


but this will not work if for 3 layer..... example colum b, could be a dog or a cat, if mungrel is selected. if the 3rd column depends on both of these ie it matters what column a and b is before 3rd list is defined.....

plus im going to have about a hundred defined lists at this rate.. and ther will be other realtionships in the same table.... :S

i have the relaonships in the format of a list of possible combinations i.

A B C
cat siamese grey
cat siamese black
cat persian white
cat persian black
cat mungrelwhite
cat mungrel ginger
....

dog poodle black
dog poodle pink ....
dog mungrel white
dog mungrel black

There must be an easy way!!!! do i have to use Access?

View 9 Replies


ADVERTISEMENT

Sorting While Preserving Relationships In Rows

Feb 19, 2010

can anyone help me on how to create a formula or a macro that will automatically sort while preserving the relationships in rows without having to press any button? I have attached a sample workbook. Basically column ABCD under row 8 to 15 contains manual inputed values. While column ABCD beginning from row 24 to 26 should contains the automated sorted preserved relationship values.

View 7 Replies View Related

Master-child Relationships In A Userform

Jan 17, 2007

I have an application that uses data stored in an excel spreadsheet. Over time the amount of data has become greater, and the application more unwieldy and difficult to maintain. In order to simplify it, I am trying to create a userform that displays multiple levels of master-child table data (for example, clients-orders-items). The data is stored in separate worksheets. The lower levels must allow inserting and deleting lines, moving them up or down, and editing the data. Does anyone have an example of such a userform that I could adapt to my specific requirements?

View 3 Replies View Related

Creating Relationships Lists From Data Tables Within MS Excel?

Mar 22, 2013

how to do this, but I know it can be done.... I want to use one drop down list created via the Data Validation 'List' Criteria to then lookup data based on the selection made in this list...... this will require a number of reiterations to get to the final result......

So:

Drop Down No:

1. List: Department Function:

2. List: Sub Function List Based on Selection from 1.

3. List: Job Code, Title and Pay Grade based on Selection from step 2

how to ensure that we are able to minimise the overall workbook size due to the complexity that is required here as this is just the basics.... this will need to applicable further once this basic requirement has been fulfilled.

View 9 Replies View Related

Pull Out Unique Values Based On Filters / Relationships?

Dec 18, 2013

I have a table like this:

Category 1
Category 1 Topic 1

Category 1
Category 1 Topic 1

Category 1
Category 1 Topic 2

I'm trying to pull each Category once out into 1 column, and each of it's Topics once in another column.

View 5 Replies View Related

List All Subfolders Up To A Certain Layer

Mar 28, 2014

I am trying to use VBA to list out subfolders within a folder. I Googled already and find some codes.

Code:
Option ExplicitPrivate iColumn As Integer

Sub NowRun()
Dim MasterPath As String
MasterPath = Range("B1").Value
TestListFolders (MasterPath)

[Code] .....

As shown above, these codes basically would list out ALL subfolders (or sub-subfolders, sub-sub-subfolders...).

I need some modifications to the codes to achieve the followings:

1) Limit to 3 layers of subfolders only, and ignore all subfolders after Layer3:
MasterPathLayer1Layer2Layer3

2) Show the full folder path on a cell next row, no need to divide into several columns:

I sort of know what the codes are doing, but I don't know how to stop the loop as I am new to VBA.

View 2 Replies View Related

3 Layer Conditional Dropdown List

Jul 16, 2013

I am creating a template with 3 layer drop down list where the selection list in second column is dependent on the first column and the third column selection list is dependent on the selection made in second column. The current template is prepared manually and are prone to errors.

The first column: Region Name
Second column: Province
Third column: Municipality

View 5 Replies View Related

Multi-Layer Drop Down Boxes

May 14, 2009

I have a file that needs 3 drop down boxes.
Box 1 = Room Style
Box 2 = Unit Number (based on Room Style)
Box 3 = Building (based on Unit Number)

I know how to get Box 1 and 2 with data validation, but I don't know how to get Box 3. Right now, my data list has Box 1 data in Row 1, and Box 2 data in the following rows, in the appropriate column.

File attached.

I don't have the Building info in there yet because I didn't know where/how to put it in. But, if you picked Manchester, 131, Box 3 needs to be B1N.

View 8 Replies View Related

Auto Data Entry On Different Sheet Layer

Aug 14, 2013

I'm trying to create a rental data base. The Items in question have 2 details, a Pokemon and a Gender. Each item also has a location but this changes.

So far the search formula works nicely, but there needs to be some way to know what items have been removed from their locations.

There needs to be some way to change the location on the 'database' sheet layer to "OUT" from the 'search' sheet layer.

E.g. (on the example file attached)

In a perfect world I would like to be able to search for a couple of pokemon, then to click on "pokeball GO!!!" and for this to change the location to "out" on the 'database' sheet layer.

View 1 Replies View Related

Three-layer Dependent Dropdown With Validation Query?

Feb 24, 2014

I need to create three drop down lists, with the second dependent on the choices in the first and the third dependent on the choices in the second. This is proving to be quite difficult and takes a lot of processing the way I'm going about it (most likely the wrong way).

My data looks like this:

A
B
C

Macintosh Apple
Fruit
Apple

[code]......

The data is presented to me with the most narrowly defined column first, then the most general, then more defined.

What I need is the user to select (on a separate worksheet from the data) the category from column B, then the type from column C, then the specific item from column A. Each selection is dependent on the earlier selection, so that choice 1 (column B) determines the options for choice 2 (column C), which determines the options for choice 3 (Column A).

Also, I think I found that "VLOOKUP" has a problem where it is unable to match data from the first column based on data in a second or third column. For instance, in the above example, if I asked VLOOKUP to look for "Apple" and give me values in column A that contain "Apple" in column C, all I get is "#N/A".

View 6 Replies View Related

Taking Layer Information From Visio And Using In Excel

Feb 13, 2014

I have a drawing in visio with multiple layers, and I am trying to insert a word into an excel cell depending on which layers are active. The code I've put into the excel VBA is as follows:

[Code] .....

This is cannabalised from some code I have working from visio, looking at the value of a cell in the same excel fine, which seems to work fine.

The problem is I am getting a runtime error "Type Mismatch" from the line in red.

View 6 Replies View Related

Programmatic Access To Trust Access To Visual Basic Editor

Jan 10, 2007

I am Generating Excel file with Macro using my asp.net (c#) application.

I am able to generate Excel file in development environment, but in Production it gives following error:
"Programmatic access to Visual Basic Project is not trusted Line: Microsoft Office Excel"

I did googling a bit and found that I have to open Excel file physically make few security related changes in macro as below.

1. Open the Office application in question. On the Tools menu, click Macro, and then click Security to open the Macro Security dialog box.
2. On the Trusted Sources tab, click to select the Trust access to Visual Basic Project check box to turn on access.
3. Click OK to apply the setting. You may need to restart the application for the code to run properly if you automate from a Component Object Model (COM) add-in or template.

Can i do above changes at runtime (using some code)?

View 4 Replies View Related

Access-Like Report Without Utilizing Access

Sep 12, 2006

I have an Excel file ( named "Classes.xsl"), that has a worksheet (named "RawData") that is layed out something like:

Name Dept Class
John 0547 Class 1
Jane 0368 Class 1
Jim 0368 Class 2
Sue 1235 Class 2

I am trying to get an Access-Like report without utilizing Access. Is there a way to generate a report similar to below using Excel as the data source (could be mail merge, perhaps a macro with a printout) I am not sure which way to try and was hoping someone could point me in the right direction...and possibly provide an example.

Class EnrollmentClass 1John 0547
Jane 0368Class 2Jim 0368
Sue 1235

View 4 Replies View Related

Excel Or Access?

May 14, 2007

I need a front worksheet with either buttons or tick boxes that will list different options for a machine

Once a tick or push button is activated a hidden block of text related to that specific tick box needs to be selected and placed onto a final print out sheet (allocation)

when futher boxes have been ticked I would like all the information blocks to build up on the final print out sheet.

View 10 Replies View Related

Access Query

Dec 8, 2008

I'm trying to build a query which matches two tables which say has a number like A#### , I want the query to give me the A number's which do not belong in the second table but which do in the first table. i believe i need an SQL query to do this?

View 2 Replies View Related

Sql Import To Access

Dec 20, 2008

The size of the table I'm importing will change, so i would like for the code to not matter on size. Also its, gonna be large too. The sheet will always be the same and the column headers will match for excel and access.

View 2 Replies View Related

Using VBA To Access Information In SQL

May 29, 2009

I need to compare data on a spreadsheet to data that resides in SQL database. I have never done this before so before I start I wanted to ask a general question, what is the cleanest, simplest, way to go about this. I read that ADO is a good way to access SQL. I understand that ADO is one of the main components of MS universal data access specifications so it sounds like the right approach (and that ADO is replacing DAO).

In terms of application, all I want to do for now is pull data from SQL and write it to a worksheet in the Excel workbook. Other macro's will then operate on this data. Later I will want to write data back to SQL but I want to focus on the "get" part first. Are the statements SELECT; INSERT; UPDATE; DELETE examples of ADO coding?

Conceptually, the SQL team provide nightly tables of data; ADO retrieves some of that data by selecting it; The selected data is written to a worksheet within the workbook. Is this a good approach?

View 3 Replies View Related

Worksheet Access Log

Aug 26, 2009

I want to create a log of everyone who opens a particular workbook. I'm using Excel 2003. I found this macro, and created a worksheet called "Log", but I've opened the workbook several times and nothing appears on the Log sheet.

View 5 Replies View Related

Formula Or Access

Jun 15, 2006

I have a very unuserfriendly report that looks like this

State - ype - County/City - Invoice # - Ref # - Amount
UT - Tax Billed - Salt Lake - 073714 - 238025 - $10.82
UT - Taxable Sales - Utah - 073714 - 238025 - $983.75
UT - Tax Billed - Slt Lk Cnty 073714 - 238025 - 4.92
UT- taxable Sales Slt Lk Cnty 073714 - 238025 - 983.75
UT - Tax billed - Utah - 073714 - 238025 - 46.73

For sales tax reporting we need to know the state, city, county district
amounts. This would be simple if we could just sort by county/city, however
we cannot because the state tax piece only only shows the word "UTAH" it does
not give a city or county name. So we must sort by invoice #. This would be
ok if we only had a few invoices in each city such as Salt Lake but we have
have 40 or 50 invoice numbers in salt lake.

I need to find a way to keep all of the tax pieces that belong together, and
subtotal by city/county. I thought if I had a formula that could change the
state name "UTAH" to reflect the city for that invoice. This is the case for
all states. Each state is 10,000 or more lines. I need to somehow grouping
the information I need. I used the pivot table approach. However, since I
must sort by invoice I still have 10,000 lines. I want to sort by invoice to
get all the pieces then sort by county city. Any ideas of how I can do this?
something in Access perhaps? a formual in excel perhaps?

View 9 Replies View Related

Getting All Data From Access

Nov 14, 2006

i have an access database and is using excel to get the required data from the access database. I am basing on department to filter out the required data into excel. Below is the VBA code i use

deptClause = Worksheets("Records").range("C1").Value
If Not deptClause = "All" Or deptClause = "" Then
requestClause = " WHERE Department='" & deptClause & "'"
End If

Queryline = "Select * from FailureQuery" & requestClause

the problem is i got one selection "All" in worksheet "Records" in cell "C1" and i cannot get this function to display all the data from the access. however when i choose a particular department it will show fine.

View 9 Replies View Related

Access Vs Excel As A DB

Dec 18, 2007

There are many examples and aspects to compare these 2 products but I just want to point one little difference which is quite crucial and interesting.

Generally if you use small amount of data - 1 Worksheet / 5000 rows / 20 columns you can use Excel without bothering about the execution time, queries and work fast and convenient with it.

The point on Excel is that in 1 Column/Row you can differently Format the data(cells). For example - format as Number or Hour the cells in Column B depending on the data in other columns. That saves you from making 2 Columns - one for Numbers and another one for Hours. This helps you to save 1 of the columns when the data structure in other column is the same.

In Access (and generally all SQL DBs) this is not possible.

View 9 Replies View Related

Converting From Access

Jun 2, 2008

I am trying to convert An Access macro/function programs to Excel and I am having trouble processing the following in Excel:

Set rsbuildinforce = CurrentDb.OpenRecordset(InfTable)

(InfTable) is defined as an Access linked table name. The values of columns in rsbuildinforce drive the logic of the macro/function

The object of the program is to read in data from excel, do some manipulations, reformatting, etc... and output .csv files.

View 9 Replies View Related

Formatting Using Access VBA

Sep 24, 2008

I have the following code set up and every works except for PaperSize and Margins. Is there a standard VBA code reference available somewhere that addresses Access to Excel operations? Thanks

With xlApp.ActiveSheet.PageSetup
.PrintTitleRows = "$1:$2"
.PrintTitleColumns = "$A:$C"
.LeftHeader = "XYZ Financial Wonks, Inc."
.CenterHeader = ""
.RightHeader = "COMPANY CONFIDENTIAL"
.LeftFooter = "&Z&F"
.CenterFooter = ""
.RightFooter = "&P of &N"
' .LeftMargin = = xlSheet.InchesToPoints(0.25)
' .RightMargin = xlSheet.InchesToPoints(0.25)
' .TopMargin = Application.InchesToPoints(0.25)
' .BottomMargin = Application.InchesToPoints(0.25)
' .HeaderMargin = Application.InchesToPoints(0.25)
' .FooterMargin = Application.InchesToPoints(0.25)
.PrintHeadings = False
.PrintGridlines = False....................

View 9 Replies View Related

Using Access 2007

Jan 1, 2010

I have an Excel spreadsheet that I have developed into an over the top flight calculator/scheduling tool. I am using Excel because developing this prduct into a stand-alone program would be absolutely murder to get approved for use on my network.

Since Excel and Access has already been approved, I began coding this project there.

Now that my calculator functions are nearly complete, I am beginning to develop a database of airfields and other misc. flight data that I and others on my network can see and manipulate. To make my calculator funtion at 100% effectiveness, I will need to use VBA to open the Access DB and pull out specific data. I will also need it to open and display some Access pop-up forms that I have just developed. Does anyone know what code I would use for excel to display and retrieve Access' information?

View 9 Replies View Related

Getting A Value From A MS Access Database

Jun 9, 2003

I was wondering if there was any code that would 'lookup' a value in a MS Access database in the same way that a Vlookup formula looks up values in tables in Excel.

Even better, if there was a fuction already written to do this.

View 9 Replies View Related

Exporting To Access

Mar 6, 2006

to write a macro to export 3 columns of information from excel into a table in access.

View 8 Replies View Related

Disallow Access To Add-ins

Jun 7, 2006

I am trying help protect a project from all my colleagues that have a version of password breaker that is actually an add-in. I have already managed to disable or grey-out all of the other commandbar options that I don't want them to have access to during their use of the model but can't figure out how to disallow them from accessing the "Add-ins" option from the "Tools" menu. I can, of course, disable the entire tools menu but don't want to do that yet.

View 9 Replies View Related

Cannot Access UserForms In Add-in

Jun 29, 2006

I would really like to be able to have a function in a workbook that can run methods (for example Show or Hide) on a UserForm inside an add-in like this:

Public Sub Test_Addin()
frmTest.Show False
End Sub

where frmTest is a UserForm inside the addin. After the add-in has been added as a reference, I am able to access all of its functions/subs in this way. When I try to access a form inside the add-in from outside the add-in, I simply get an object not defined error. Looking more closely, if I type in "eRFTEAddIn." (which is the name of the add-in) and look at the possible options, the forms do not show up...although the modules and sheets do.

View 6 Replies View Related

Where To Access Ozgrid Add In

Apr 13, 2007

I have installed the free version of Ozgrid.xla, but do not see where to access it.

View 9 Replies View Related

Access From Different Logins

May 5, 2007

I have created few excel files from "X" login account and when i try to open it from the "Y" login account, it opens it in the read only mode. do you know how to access it from Y account in the edit mode or the write mode.

View 2 Replies View Related







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