comparing data

  • Thread starter Thread starter Coach
  • Start date Start date
C

Coach

hi
looking to build a database just holding the following - looks like this
A B C D
t32 3 6 7 4
t45 3 5 9 2
s45 5 4 7 4

etc

how could i compare the data that I selected eg in this case the top and
bottom
to give the following

A B C D
t32 3 6 7 4
s45 5 4 7 4
2 -2 0 0

eg take the top number from the bottom


CHEERS & MERRY CHRISTMAS
 
It looks like you have a normalization issue. You might have better luck if
your table was like:

tbNormalized
==============
FieldA FieldB FieldC
t32 A 3
t32 B 6
t32 C 7
.....
s45 C 7
s45 D 4
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top