straybullet
IS-IT--Management
Departments have different uses for the same data. We have a single table into which users are entering information about data they need - in the following layout:
FieldName RequiredValue CritcalValue
Name1 2 4
Name2 1 2
Name1 2 2
Name3 1 1
Name2 1 2
In other words, the same data has a different value to each. Using separate queries, I am able to give each field a value depending on the number of times it's been entered, the level of RequiredValue and the level of CriticalValue.
What Id really like to do is have the information in a single query (including the calculated values) similar to:
FieldName RequiredCritical RequiredNonCritical
Name1 6 10
Name2 17 14
Name3 12 8
Is there a way to do this with the 6 queries I have?
Let them hate - so long as they fear... Lucius Accius
FieldName RequiredValue CritcalValue
Name1 2 4
Name2 1 2
Name1 2 2
Name3 1 1
Name2 1 2
In other words, the same data has a different value to each. Using separate queries, I am able to give each field a value depending on the number of times it's been entered, the level of RequiredValue and the level of CriticalValue.
What Id really like to do is have the information in a single query (including the calculated values) similar to:
FieldName RequiredCritical RequiredNonCritical
Name1 6 10
Name2 17 14
Name3 12 8
Is there a way to do this with the 6 queries I have?
Let them hate - so long as they fear... Lucius Accius