Forum Discussion
- MarkShnier__You
Qrew Legend
What is the highest possible and lowest possible values for S and F that the formula would need to handle?
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- JoshHamilton1Qrew Memberlowest is 1 and highest is 48.
What I am trying to do is create a time code system to stop double bookings,
So I'll have a [Base Code] which states location and date (Venue-Court-Date)
A [Start Code] which is the starting time of the booking in which I have assigned values 1 through 48 to the possible time slots to create a booking (00:00 = 1, 00:30 = 2, 01:00 = 3 etc.)
A [Finish Code] which behaves the same as the [Start Code] but lists the finish time
So now I am trying to create a [Duration Code] which lists the time codes in between [SC] and [FC] and then either write a script or some other method to make sure that a new record cant have a [SC] that exists already as a [SC] or [DC] and cant have a [FC] that exists already as a [DC] or [FC]
------------------------------
Josh Hamilton
------------------------------- MarkShnier__You
Qrew Legend
I think that this pattern works
List(" ",
If(< 1 and>1, "1"),
If(< 2 and>2, "2"),
If(< 3 and>3, "3"),
If(< 4 and>4, "4"),
If(< 5 and>5, "5"),
If(< 6 and>6, "6"),
If(< 7 and>7, "7"),
If(< 8 and>8, "8"),
If(< 9 and>9, "9"),
If(< 10 and>10, "10"))
.. and continue the pattern to 48
Let me know how you make out in your double booking solution. It's a generic problem which is difficult to solve so you may be onto to something here.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------