Hopefully I'm just missing a function I don't know about yet...but here's my problem:
I've got a data sheet with Date, Department, Category, and Quantity. Basically if this were an actual database table the primary key would be Date, Department, and Category combined.
I need to count how many different dates I have in the table. Say the date data column looks like this:
1/1/04
1/1/04
1/1/04
1/1/04
1/2/04
1/2/04
1/3/04
So there are 7 records there, but only 3 different dates...I need to somehow return 3. Any help would be greatly appreciated.
Kevin
I've got a data sheet with Date, Department, Category, and Quantity. Basically if this were an actual database table the primary key would be Date, Department, and Category combined.
I need to count how many different dates I have in the table. Say the date data column looks like this:
1/1/04
1/1/04
1/1/04
1/1/04
1/2/04
1/2/04
1/3/04
So there are 7 records there, but only 3 different dates...I need to somehow return 3. Any help would be greatly appreciated.
Kevin