I'm still not clear on what "numbers" you are storing. Are you saying
"ticket numbers"? If so, they aren't really "numbers", are they?! You
won't be adding/subtracting/multiplying/dividing those "numbers", right? So
they are probably actually characters (text) that happen to be digits.
If you have a one-to-many relationship, and if you want to get good use of
Access' relationally-oriented features and functions, don't try feeding
Access 'sheet data. Access is not a spreadsheet on steroids. You'll need
to think about your data in new ways.
Can one account be related to multiple tickets? Can one ticket be related
to multiple accounts? If so, you have a MANY-TO-MANY relationship! That
takes three tables to resolve: tblTickets, tblAccounts, trelTicketAccount.
More info, please!
--
Regards
Jeff Boyce
www.InformationFutures.net
Microsoft Office/Access MVP
Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/
What do the "two numbers" represent?
Will there ever be more than two?
What do you want/need to do with the data, once stored?
"formatted as a number" - no, it would have to be text (but see Allen's
response about the inadvisability of storing two facts in one field).
More info, please...
--
Regards
Jeff Boycewww.InformationFutures.net
Microsoft Office/Access MVPhttp://mvp.support.microsoft.com/
Microsoft IT Academy Program Mentorhttp://microsoftitacademy.com/
- Show quoted text -
This database will track tickets previously tracked in Excel. The
numbers represent client accounts that were affected by the issue.
This is a variable number of accounts - typically it will be just one,
but it can be more.
If I wanted to query it, I could probably just store it as text and
then write code to search for the comma in each field and if it is
found then consider the values on each side of the comma, right?
That seems like alot of extraness...Maybe I should just have a
separate record for each affected account?