Ok, problem 2 I have with my current project.
Ok, first allow me to tell you what I'm doing. I am setting up a database to track Pilot Statistics and Awards for a group of gamers that play IL-2, a WW2 combat flight sim game.
I have established 2 tables:
Mission Results (where the results of individual missions are stored)
The data I am looking for is to retrieve how many times each pilot has ended a mission in each fashion. So the results should be something like:
Pilot A RTB-Safe: 3 Times, RTB-Ditched: 2 Times etc.
Pilot B RTB-Safe: 0 Times, RTB-Ditched: 1 Times etc.
Any help is greatly appreciated.
Ok, first allow me to tell you what I'm doing. I am setting up a database to track Pilot Statistics and Awards for a group of gamers that play IL-2, a WW2 combat flight sim game.
I have established 2 tables:
Mission Results (where the results of individual missions are stored)
This has the following Fields:
Mission Conclusion (where the total points earned for a missions multiplier is stored)Pilot Name
Mission Date
Ariel Victories
Kills Witnessed
Points Earned
Mission Date
Ariel Victories
Kills Witnessed
Points Earned
This has the following 2 fields:
The Points Earned Field is a lookup column where you select how the pilot ended the mission (RTB-Safe, RTB-Ditched, RTB-Crashed, etc. a total of 8 options) each of these has a differnt valued multiplier tied to it which is then used in a query to calculate the total points a pilot earned for a given mission.Conclusion Status
Point Multiplier
Point Multiplier
The data I am looking for is to retrieve how many times each pilot has ended a mission in each fashion. So the results should be something like:
Pilot A RTB-Safe: 3 Times, RTB-Ditched: 2 Times etc.
Pilot B RTB-Safe: 0 Times, RTB-Ditched: 1 Times etc.
Any help is greatly appreciated.