Are Yaar!!!!! Kuchh Bhi Nahin????
Ok . . . Here's what you have to do - I will try & help you as much as possible:
Do not use Lookup Fields in your tables.
1. First step you will have to have your data in one or more tables. In order to do this well and make your database useful to you in the long run - you should Google 'Database Normalization'. This will teach you the basis of creating your tables in the correct way. It will probably take you 15 to 20 minutes to read a short article on this - but you should take extra time to really understand the concept so that your database is solid.
2. In your case, you will need at least four tables:
a. Customer Information [you can name it something like 'Customers' - Fields: CustomerID, Name, Address1, Address2, State, PostalCode, email, phone . . .],
b. ServiceTypes [that contains the different Services and the points assigned to each - Fields: ServiceID, Description],
Eg:
ServiceID |
Description |
1 |
Flight Domestic |
2 |
Flight International |
3 |
Hotel |
4 |
Tour |
c. ServicePointAllocation [contains the points for various levels of a Service [Fields: ServiceID, Level, LevelDescription, Points]
Eg:
ServiceID |
Level |
LevelDescription |
Points |
1 |
1 |
Domestic One Way |
1 |
1 |
2 |
Domestic Round Trip |
2 |
d. ServicesUsed [containing CustomerID, ServiceID, ServiceLevel].
I have done this pretty quick - so I am not sure that I've considered everything - and there may be inconsistencies in my table layout suggestions.
This is why you
must read up about Normalization and how to create tables correctly.
Once you have your Tables created - put a few test rows of data in each Table - like your real data.
Then - you will want to create a Form that you can use to add data to your Tables and to keep track of your Customers and the points they have accumulated.
Let me know when you have made some progress and we can proceed from there.
Also - there is a LOT of information on the internet & you can just type 'ms access 2010 tutorial' and you should find tutorials. Those are a very good place to start.
All the best!!
