I'm trying to create a select query that does the following
my Table looks as follow
ID(AutoNumber) Measuring Value
22 1A 20
23 2A 20
24 3A 15
25 4A 10
26 5A 15
27 1B 10
28 2B 5
29 3B 5
30 4B 10
31 5B 5
Ex. of what I want
1.
A1 : 20 B1 : 10
A2 : 20 B2 : 5
A3 : 15 B3 : 5
A4 : 10 B4 : 10
A5 : 15 B5 : 5
and Calculates
C1 : 10
C2 : 15
C3 : 10
C4 : 0
C5 : 10
Showing all 3 features in the same query
No A B C
1 : 20 10 10
2 : 20 5 15
3 : 15 5 10
4 : 10 10 0
5 : 15 5 10
and if B isn't there the results as follows
ex 2.
No A B C
1 : 20 0 0
2 : 20 0 0
3 : 15 0 0
4 : 10 0 0
5 : 15 0 0
and still Showing all 3 features in the same query
using the query for a listbox.
my Table looks as follow
ID(AutoNumber) Measuring Value
22 1A 20
23 2A 20
24 3A 15
25 4A 10
26 5A 15
27 1B 10
28 2B 5
29 3B 5
30 4B 10
31 5B 5
Ex. of what I want
1.
A1 : 20 B1 : 10
A2 : 20 B2 : 5
A3 : 15 B3 : 5
A4 : 10 B4 : 10
A5 : 15 B5 : 5
and Calculates
C1 : 10
C2 : 15
C3 : 10
C4 : 0
C5 : 10
Showing all 3 features in the same query
No A B C
1 : 20 10 10
2 : 20 5 15
3 : 15 5 10
4 : 10 10 0
5 : 15 5 10
and if B isn't there the results as follows
ex 2.
No A B C
1 : 20 0 0
2 : 20 0 0
3 : 15 0 0
4 : 10 0 0
5 : 15 0 0
and still Showing all 3 features in the same query
using the query for a listbox.