February 11, 201312 yr Newbies Hi, I'm putting together a database in filemaker 11 to schedule volunteers for events and I was wondering if it is possible to have the text color change in a portal row if a volunteer gets scheduled for more than one event at the same time. So far I have 3 tables: Volunteers JoinStaffVolunteers Events Each Volunteer record has a portal that lists all the events that the volunteer has signed up for, and each event has a portal listing all the volunteers that are going to the event. I would like the text to change to red in the portal rows if the volunteer gets scheduled for two (or more) events that take place at the same time. Is this possible, and if so how would I go about implementing it? Thanks!
February 11, 201312 yr Hi, absolutely, you should look into conditional formatting. Count ( Tableof::events) > 1 --> apply red, bold, whatever you wish Best, Alexander
February 12, 201312 yr Author Newbies I see how that works, but there are multiple events every day and a lot of them have overlapping times, so I need to somehow check if a volunteer is booked for events that conflict with each other and I'm still having trouble coming up a formula that will work.
February 12, 201312 yr Hi, It would be better Idea if you make a self relationship for the Events Table (relating the volunteersID( = ) and the Event Timestamp(Event Date and Time) (<,>) ) Then Count ( Tableof::events) > 1 --> apply red, bold Best Wishes...
February 14, 201312 yr Author Newbies I'm sorry, I'm still not quite getting it. I tried to upload a striped down version of what I am trying to do but got an error saying I could not upload that kind of file. Here are the basic tables and fields. Volunteers VolunteerID Name JoinTable VolunteerID EventID EventTable EventID EventName Date StartTime As you can see there is no VolunteerID on the event table so I'm not sure how to get that self join to work. I know I am probably just being dense, but I would be very grateful if someone could walk me through a formula to check for timing conflicts for the volunteers that I can use with conditional formatting. Thanks.
February 28, 201312 yr Compress the file into a .zip before uploading it, and you won't get the error. Try making an EventTable2, and relate it to EventTable using the StartTime. Then used the Count (EventTable2). This may or may not work.
Create an account or sign in to comment