Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Appointment Setting

2770 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Duncan_Fischer
5 - Automation Enthusiast
5 - Automation Enthusiast

@bdelanghe

I’m a noob here.
Just wondering for similar feedback as above. Trying to put together an appointment setting base for a radiology practice.
Many patients, a fixed number of procedures, each one having a duration and priority. Multiple collaborators (technicians, specialists, doctors etc)

Just curious as to maybe a preferred table structure.

This is what I have so far.

I also need to be able to select a technician, from the collaborators attached to each appt type

Screen Shot 2018-12-23 at 7.53.27 pm.png

Screen Shot 2018-12-23 at 7.53.33 pm.png

TIA Duncan

3 Replies 3

I’m no expert but your base structure makes sense to me. But here are some ideas you may find useful:

  • I would recommend adding a Lookup field to your [Appointment Book] table that points to the {Priority} field in the [Appt Type] table. This way in your [Appointment Book] you’ll be able to filter and sort appointments by their priority
  • I’d rephrase your {Priority} options to have numbers preceding the text (i.e. “1-Super Dooper Urgent”,“2-Middle of the Road”, etc.) so that you can sort records by priority and have them appear with “1” priorities at the top.
  • I’d also add a formula field to your [Appointment Book] table with a formula like IF(WEEK({Appointment Time})=WEEK(TODAY()),"This Week", IF(IS_BEFORE({Appointment Time},TODAY()),"Lapsed Appointments","Upcoming Appointments")). This should give you a good field to group records or filter records by if you want to get completed/historical appointment records out of the way

thansk @Kamille_Parks, i have implemented that idea. although the function WEEK wouldnt go in , so changed to DAY and it was fine

Thanks & Merry Christmas

bdelanghe
7 - App Architect
7 - App Architect

Hi @Duncan_Fischer. Hope you had a great holiday! (I ended up being busier than anticipated). Glad @Kamille_Parks could help out. Also your base looks great. the linking makes sense and now you can just build smart fields to help with workflows. I think I can help you out here:

What you seem to be looking for is the ability to use a ‘single select’ based on the ‘lookup’ from the [Appt type] table. Sadly this isn’t possible. That said you can still create some data validation in the event someone does choose someone who isn’t qualified. This is what I came up with:

Screen Shot 2018-12-27 at 12.03.40 PM.png

Which then has a filtered for [Invalid Technician]:

Screen Shot 2018-12-27 at 12.04.33 PM.png

If you have pro you could also do a conditional color. Or you could group by [Tech Qualified] which will pull them out separately.

Hope this helps!