Dudes, you should check this out! I just downloaded a MS Access database titled "Sales Pipeline" and it's a great way of learning codes to do charts on the fly. I'm reading the codes and checking reference books, google, etc to understand what they mean and do. That way I can build my own and actually understand the underlying structure.
I'm trying to find some clarifications that the reference books are not on one code. This code is the row source for a combo box.
Ok, the code clearly says that it is a select query and first part is selecting a table "Customers Extended" and going to the ID column. My first question is what does the dot just before ID mean?
Next part is more confusing, because it points to three queries separated by a dot. What exactly does this do? As for the rest, I understand their purpose.
Any insights would be so helpful.
Dang, I wish MS Access would give detailed instructions on how they built these awesome basic DBs.
Matt
I'm trying to find some clarifications that the reference books are not on one code. This code is the row source for a combo box.
Code:
SELECT [Customers Extended].ID,
[Customers Extended].[Contact Name],
[Customers Extended].Company
FROM [Customers Extended]
ORDER BY [Customers Extended].[Contact Name];
Next part is more confusing, because it points to three queries separated by a dot. What exactly does this do? As for the rest, I understand their purpose.
Any insights would be so helpful.
Dang, I wish MS Access would give detailed instructions on how they built these awesome basic DBs.
Matt
Comment