A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

"three dimensional" data in Access



 
 
Thread Tools Display Modes
  #1  
Old March 25th, 2008, 10:17 PM posted to microsoft.public.access.tablesdbdesign
caboaddict
external usenet poster
 
Posts: 1
Default "three dimensional" data in Access

My subject title might be a little misleading. This isn't about having a
"graphical" 3D representation of data, but about how to get data from an
excel spreadsheet imported and useful in Access. I am using Access 2007 to
design the database, but saving it in a 2003 format. The basic description
of the spreadsheet is:

The first two dimensions are the column and Row headings while the third is
multiple worksheets with the same information. The columns contain dollar
amounts that correspond to each row for each year (Year 0, Year 1, Year 2,
etc) and Row values correspond to certain areas like data center, Training,
Development, and Implementation. Each one of those areas contain sub
elements such as hosting, contract, system support etc. These values are
specified for multiple vendors, each in their own workbook.

As far as I can tell (understand/know) is that each vendor will have to have
their own table with the rows being the section totals without being able to
include the sub sections unless I want to add some major complexity to the
database.

I hope I have clarified my issue adequately to warrant a response from this
group.

Thanks,

Jason
  #2  
Old March 25th, 2008, 10:41 PM posted to microsoft.public.access.tablesdbdesign
Evan Keel
external usenet poster
 
Posts: 46
Default "three dimensional" data in Access


"caboaddict" wrote in message
...
My subject title might be a little misleading. This isn't about having a
"graphical" 3D representation of data, but about how to get data from an
excel spreadsheet imported and useful in Access. I am using Access 2007

to
design the database, but saving it in a 2003 format. The basic

description
of the spreadsheet is:

The first two dimensions are the column and Row headings while the third

is
multiple worksheets with the same information. The columns contain dollar
amounts that correspond to each row for each year (Year 0, Year 1, Year

2,
etc) and Row values correspond to certain areas like data center,

Training,
Development, and Implementation. Each one of those areas contain sub
elements such as hosting, contract, system support etc. These values are
specified for multiple vendors, each in their own workbook.

As far as I can tell (understand/know) is that each vendor will have to

have
their own table with the rows being the section totals without being able

to
include the sub sections unless I want to add some major complexity to the
database.

I hope I have clarified my issue adequately to warrant a response from

this
group.

Thanks,

Jason


How about?

Vendors (VendorID(PK), VendorName, etc)
Expense(ExpenseCode(PK), ExpenseDescription, etc)
VendorExpenses(VendorID(PK), ExpenseCode(PK), ExpenseYear(PK),
ExpenseAmount)

I'm not sure "expense" is the right word, but you get the idea...

Evan


  #3  
Old March 26th, 2008, 05:03 PM posted to microsoft.public.access.tablesdbdesign
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default "three dimensional" data in Access

As Evan points out, you need one table with multiple vendors (and a vendorID
in your related table as a foreign key), rather than one-table-per-vendor.
That approach might be necessary if you were sticking with a spreadsheet,
but Access is a relational database.

You won't get the advantages (or ease of use) of Access'
relationally-oriented features/functions if you feed it 'sheet data.

Good luck!

Regards

Jeff Boyce
Microsoft Office/Access MVP


"caboaddict" wrote in message
...
My subject title might be a little misleading. This isn't about having a
"graphical" 3D representation of data, but about how to get data from an
excel spreadsheet imported and useful in Access. I am using Access 2007
to
design the database, but saving it in a 2003 format. The basic
description
of the spreadsheet is:

The first two dimensions are the column and Row headings while the third
is
multiple worksheets with the same information. The columns contain dollar
amounts that correspond to each row for each year (Year 0, Year 1, Year
2,
etc) and Row values correspond to certain areas like data center,
Training,
Development, and Implementation. Each one of those areas contain sub
elements such as hosting, contract, system support etc. These values are
specified for multiple vendors, each in their own workbook.

As far as I can tell (understand/know) is that each vendor will have to
have
their own table with the rows being the section totals without being able
to
include the sub sections unless I want to add some major complexity to the
database.

I hope I have clarified my issue adequately to warrant a response from
this
group.

Thanks,

Jason



  #4  
Old March 27th, 2008, 09:26 PM posted to microsoft.public.access.tablesdbdesign
Fred
external usenet poster
 
Posts: 1,451
Default "three dimensional" data in Access

This is interesting in that makes on realize that data does not have
dimensions, only particular methods of storing and graphically representing
it do.

"Jeff Boyce" wrote:

As Evan points out, you need one table with multiple vendors (and a vendorID
in your related table as a foreign key), rather than one-table-per-vendor.
That approach might be necessary if you were sticking with a spreadsheet,
but Access is a relational database.

You won't get the advantages (or ease of use) of Access'
relationally-oriented features/functions if you feed it 'sheet data.

Good luck!

Regards

Jeff Boyce
Microsoft Office/Access MVP


"caboaddict" wrote in message
...
My subject title might be a little misleading. This isn't about having a
"graphical" 3D representation of data, but about how to get data from an
excel spreadsheet imported and useful in Access. I am using Access 2007
to
design the database, but saving it in a 2003 format. The basic
description
of the spreadsheet is:

The first two dimensions are the column and Row headings while the third
is
multiple worksheets with the same information. The columns contain dollar
amounts that correspond to each row for each year (Year 0, Year 1, Year
2,
etc) and Row values correspond to certain areas like data center,
Training,
Development, and Implementation. Each one of those areas contain sub
elements such as hosting, contract, system support etc. These values are
specified for multiple vendors, each in their own workbook.

As far as I can tell (understand/know) is that each vendor will have to
have
their own table with the rows being the section totals without being able
to
include the sub sections unless I want to add some major complexity to the
database.

I hope I have clarified my issue adequately to warrant a response from
this
group.

Thanks,

Jason




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:37 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.