database - Normalizing Excel Tables -


how create normalized database excel file? have excel table unit numbers across top , steps of units listed down left side. right people put "x" in cell when done step unit. right when decide unit add 1 more number on top.

how make normalized access database? assume needs @ least 2 tables: "steps" , "units."

the bigger question, how present form data entry? cross tab query cannot used enter data in access. people used entering "x" in excel sheet unit number @ top , pieces down left side. how make similar or easy use in access?

units   1 2 3 4 5 molded  x x x x x bolted  x x  x painted x x x packed  x 

tblunit unitid, unitname 1, unit1 2, unit2 3, unit3 4, unit4 5, unit5  tblpiece pieceid,piecename 1, molded 2, bolted 3, painted 4, packed  tblunitpiece unitpieceid, unitid, pieceid 1, 1, 1 2, 1, 2 3, 1, 3 4, 1, 4 5, 2, 1 6, 2, 2 7, 2, 3 8, 3, 1 9, 3, 3 10, 4, 1 11, 4, 2 12, 5, 1 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -