I have a web app that will allow the user to "archive" older records in a table (TBL1) into a new table "TBL2".
I need a test first to see if the table exists.
If not, then I create it using the records selected from TBL1. If it exists, then I want to append to TBL2.
I have no problem running...
Thanks, FancyPrairie, that works.[2thumbsup]
I did find one thing, though. If the next record has identical values (no field changes: 2 male fish weighing 3 lbs on Pond1, Sample1) a new record will not be created. At least one field must be changed, to create the new record. I explained this to...
Thank you, PHV. Especially for your fast response!
I didn't get much sleep last night, and cannot remember how to do what you suggested.
Can you assume that I am a newbie (well, I am allmost one!)
And outline the steps a little more detailed? I am sure that other members that view this would...
Okay, I know this has been answered, but the Search feature is disabled while the web is updated!
A co-worker has a table with fields:
Date, Pond, SampleName, Sex, Weight
At our Fish Research Center
He will be entering multiple data (weight & sex) for each pond and samplename.
He wants all...
Thanks, Chris, and TwoOdd.
TwoOdd:
I'll assume that after all match pairings have been used, they will start over. The class(es) will have 15-20+ attendees, most likely, so this will (most likely) not be an issue. The main thing is to assure that there are unique pairings for each day...
Thank you, TwoOdd, but I incorrectly stated my problem.
Let me restate it here.
Assume 6 attendees named A, B, C, D, E, and F.
I need to match all the attendees together each day into different pairings, as shown below:
Day 1: A-B, C-D, E-F
Day 2: A-C, B-E, D-F
Day 3: A-D, C-E, B-F
Day 4: A-E...
Okay, I hope I can explain this correctly.
I need to set up a scheduling app of sorts.
What I will do is take say 4 People, and try to match these 4 people up in unique pairs each day, for some activity.
I need to print out these possible pairings.
The condition is for, say, the following...
Thanks, TomThumbKP.
Would you show an example on how to use dictionaries to build the complex array in the examples above and how to access the different elements?
For example:
Dim x, y, z
y = array(1, 2, 3)
x = Array(y, array(3, 4, 5), array(6, 7, 8))
z = array(x, array(7,8,9)...
Thanks, TomThumbKP!
This is still confusing, on exactly how to access elements of this type of an array. I mean, how could one go about accessing all the elements without knowing how the array was created or how many arrays are within arrays??
Anyway ...
JohnYingling, here is what I get...
Hello, Narizz28:
I found some more info in this thread that explains a little.
"2 Dimensional Array" thread329-756337
In response to your question,
Dim x, y, z
y=Array(1,2,3)
x=Array(y,Array(3,4,5), Array(6,7,8))
z=Array(x, Array(7,8,9), Array(10,11,12))
I can access these elements...
I received this in an e-mail newsletter:
Dim x, y
y = array(1, 2, 3)
x = Array(y, array(3, 4, 5), array(6, 7, 8))
that mentions using an array of an arrays. However, they do not indicate how to access the elements.
My question is:
How do I access each element of the array x?
Nothing I have...
Thank you much, Martin, for your fast replies.
I can always depend on the members of Tek-Tips to provide help when it is needed!
Good point about "reusablility"!
Chalmers
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.