{"id":9918,"date":"2016-07-07T08:28:02","date_gmt":"2016-07-07T15:28:02","guid":{"rendered":"http:\/\/www.seedcode.com\/?p=9918"},"modified":"2016-07-07T08:28:02","modified_gmt":"2016-07-07T15:28:02","slug":"filemaker-resource-scheduling-conflicts","status":"publish","type":"post","link":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/","title":{"rendered":"Showing Conflicts in DayBack Calendar for FileMaker"},"content":{"rendered":"<p>DayBack Calendar does a great job visualizing conflicts in your schedule. But sometimes you may want to alert users when they&#8217;re creating a conflict that they may not see.<\/p>\n<p>We&#8217;ve created a simple script you can paste into your copy of DayBack Calendar to help notify users when they&#8217;re creating a conflict. Here&#8217;s the script in action:<\/p>\n<p style=\"text-align: center;\">[ba-youtubeflex videoid=&#8221;xZCajTfEPBA&#8221;]<\/p>\n<h3>Adding this to your file<\/h3>\n<p><em><strong>Note.<\/strong> These instructions are for the older calendar, DayBack Classic. If you&#8217;re using the newest DayBack for FileMaker 19 and higher, you&#8217;ll want the updated instructions and example code here: <a href=\"https:\/\/dayback.com\/preventing-conflicts-filemaker-calendar\/\" target=\"_blank\" rel=\"noopener\">Preventing Conflicts in DayBack for FileMaker 19<\/a>.<\/em><\/p>\n<p>Begin by downloading the script <a href=\"http:\/\/www.seedcode.com\/?wpdmdl=40\">here<\/a>. That&#8217;s an example file containing just the new &#8220;Detect Conflicts&#8221; script.<\/p>\n<p>Next, import this new script into your calendar file: open DayBack&#8211;or the file you&#8217;ve pasted DayBack into&#8211;and from the Scripts menu in FileMaker, select &#8220;Import&#8221;. Once that script has been imported, edit the script named &#8220;Create Edit Delete Event ( SourceNo, Operation ) { Hide, DateStart , DateEnd , TimeStart &#8230; }&#8221;.<\/p>\n<p>Scroll towards the bottom and create the lines shown in blue below. Here is the calculation to use for that first IF() line:<\/p>\n<pre style=\"padding-left: 30px;\">not IsEmpty ( GetField ( $$sc_SourceTableOccurrenceName[$sc_SourceNo] &amp; \"::\" &amp; $$sc_FieldForResource ) )<\/pre>\n<div class=\"lightbox\"><a href=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-large wp-image-9922\" src=\"http:\/\/www.seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript-1024x646.png\" alt=\"TestForConflictsInCreateScript\" width=\"1024\" height=\"646\" srcset=\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript-1024x646.png 1024w, https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript-300x189.png 300w, https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript-768x484.png 768w, https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/TestForConflictsInCreateScript.png 1403w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/div>\n<p>That&#8217;s it. With that new script, and those new lines added to the &#8220;Create Edit Delete Event&#8230;&#8221; script, users will be notified whenever an edit to an event&#8211;or a newly created event&#8211;overlaps with another event having the same resources.<\/p>\n<h3>Notes<\/h3>\n<ul>\n<li>The script does not test for conflicts if the event being edited has no resource&#8211;though you can change that by altering that IF() statement above.<\/li>\n<li>The script currently only tests for overlaps within a single table: the same table as the event being edited.<\/li>\n<li>All-day events sharing the same resource are also considered to be conflicting.<\/li>\n<li>The script is completely abstracted as far as field and layout names go. Once you add this to your file, feel free use literal field and layouts names if you want to change the scripts behavior&#8230; provided you&#8217;re using a single source for your events. If you&#8217;re using <a href=\"http:\/\/www.seedcode.com\/pmwiki\/index.php?n=DayBackForFileMaker.MultipleSources\">multiple sources<\/a> you may want to keep things abstracted so the script works with any source.<\/li>\n<li>The script contains some placeholder lines for records you may wish to omit from <em>conflict<\/em>\u00a0consideration: in these placeholder lines we omit records where the status is &#8220;pending&#8221;, for example.<\/li>\n<li>You may want to add this test to the\u00a0IF() statement shown above as well as including it in the &#8220;Detect Conflicts&#8221; script&#8211; the reason is that &#8220;Detect Conflicts&#8221; will return any conflicting events that overlap the event you&#8217;re editing: so you may be editing event &#8220;A&#8221; which, because of its status does not count towards conflicts, but in the same time frame events &#8220;B&#8221; and &#8220;C&#8221; conflict with each other. In this case, including your status test only in &#8220;Detect Conflicts&#8221; <em>will<\/em> return a conflict in this case, including it in the IF() statement above will prevent edits to &#8220;A&#8221; from showing the conflict.<\/li>\n<li>You can take this script further by implementing a &#8220;notified&#8221; flag so users aren&#8217;t warned about the conflict after they&#8217;ve accepted it one, even making that flag user-specific, if you wanted to. If you&#8217;d like our help extending this script, sign up for an <a href=\"http:\/\/www.seedcode.com\/implementation-packages\/\" target=\"_blank\" rel=\"noopener\">implementation package<\/a>, and we can make the changes for you, or coach you through making them yourself.<\/li>\n<li>For more on resource scheduling in DayBack, including more videos, check out <a href=\"http:\/\/www.seedcode.com\/pmwiki\/index.php?n=DayBackForFileMaker.Resources\">resource scheduling in our docs<\/a>.<\/li>\n<\/ul>\n<p>We hope this helps make your resource scheduling a little easier and stops conflicts from sneaking up on you. =)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>DayBack Calendar does a great job visualizing conflicts in your schedule. But sometimes you may want to alert users when they&#8217;re creating a conflict that they may not see. We&#8217;ve created a simple script you can paste into your copy of DayBack Calendar to help notify users when they&#8217;re creating a conflict. Here&#8217;s the script in action: [ba-youtubeflex videoid=&#8221;xZCajTfEPBA&#8221;] Adding this to your file Note. These instructions are for the older calendar, DayBack Classic. If you&#8217;re using the newest DayBack for FileMaker 19 and higher, you&#8217;ll want the updated instructions and example code here: Preventing Conflicts in DayBack for FileMaker 19. Begin by downloading the script here. That&#8217;s an example file containing just the new &#8220;Detect Conflicts&#8221; script. Next, import this new script into your calendar file: open DayBack&#8211;or the file you&#8217;ve pasted DayBack into&#8211;and from the Scripts menu in FileMaker, select &#8220;Import&#8221;. Once that script has been imported, edit the script named &#8220;Create Edit Delete Event ( SourceNo, Operation ) { Hide, DateStart , DateEnd , TimeStart &#8230; }&#8221;. Scroll towards the bottom and create the lines shown in blue below. Here is the calculation to use for that first IF() line: not IsEmpty ( GetField ( $$sc_SourceTableOccurrenceName[$sc_SourceNo] &amp; &#8220;::&#8221; &amp; $$sc_FieldForResource ) ) That&#8217;s it. With that new script, and those new lines added to the &#8220;Create Edit Delete Event&#8230;&#8221; script, users will be notified whenever an edit to an event&#8211;or a newly created event&#8211;overlaps with another event having the same resources. Notes The script does not test for conflicts if the event being edited has no resource&#8211;though you can change that by altering that IF() statement above. The script currently only tests for overlaps within a single table: the same table as the event being edited. All-day events sharing the same resource are also considered to be conflicting. The script is completely abstracted as far as field and layout names go. Once you add this to your file, feel free use literal field and layouts names if you want to change the scripts behavior&#8230; provided you&#8217;re using a single source for your events. If you&#8217;re using multiple sources you may want to keep things abstracted so the script works with any source. The script contains some placeholder lines for records you may wish to omit from conflict\u00a0consideration: in these placeholder lines we omit records where the status is &#8220;pending&#8221;, for example. You may want to add this test to the\u00a0IF() statement shown above as well as including it in the &#8220;Detect Conflicts&#8221; script&#8211; the reason is that &#8220;Detect Conflicts&#8221; will return any conflicting events that overlap the event you&#8217;re editing: so you may be editing event &#8220;A&#8221; which, because of its status does not count towards conflicts, but in the same time frame events &#8220;B&#8221; and &#8220;C&#8221; conflict with each other. In this case, including your status test only in &#8220;Detect Conflicts&#8221; will return a conflict in this case, including it in the IF() statement above will prevent edits to &#8220;A&#8221; from showing the conflict. You can take this script further by implementing a &#8220;notified&#8221; flag so users aren&#8217;t warned about the conflict after they&#8217;ve accepted it one, even making that flag user-specific, if you wanted to. If you&#8217;d like our help extending this script, sign up for an implementation package, and we can make the changes for you, or coach you through making them yourself. For more on resource scheduling in DayBack, including more videos, check out resource scheduling in our docs. We hope this helps make your resource scheduling a little easier and stops conflicts from sneaking up on you. =)<\/p>\n","protected":false},"author":1,"featured_media":9925,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[8],"class_list":["post-9918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-calendar"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Showing Conflicts in DayBack Calendar for FileMaker - SeedCode<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Showing Conflicts in DayBack Calendar for FileMaker - SeedCode\" \/>\n<meta property=\"og:description\" content=\"DayBack Calendar does a great job visualizing conflicts in your schedule. But sometimes you may want to alert users when they&#8217;re creating a conflict that they may not see. We&#8217;ve created a simple script you can paste into your copy of DayBack Calendar to help notify users when they&#8217;re creating a conflict. Here&#8217;s the script in action: [ba-youtubeflex videoid=&#8221;xZCajTfEPBA&#8221;] Adding this to your file Note. These instructions are for the older calendar, DayBack Classic. If you&#8217;re using the newest DayBack for FileMaker 19 and higher, you&#8217;ll want the updated instructions and example code here: Preventing Conflicts in DayBack for FileMaker 19. Begin by downloading the script here. That&#8217;s an example file containing just the new &#8220;Detect Conflicts&#8221; script. Next, import this new script into your calendar file: open DayBack&#8211;or the file you&#8217;ve pasted DayBack into&#8211;and from the Scripts menu in FileMaker, select &#8220;Import&#8221;. Once that script has been imported, edit the script named &#8220;Create Edit Delete Event ( SourceNo, Operation ) { Hide, DateStart , DateEnd , TimeStart &#8230; }&#8221;. Scroll towards the bottom and create the lines shown in blue below. Here is the calculation to use for that first IF() line: not IsEmpty ( GetField ( $$sc_SourceTableOccurrenceName[$sc_SourceNo] &amp; &quot;::&quot; &amp; $$sc_FieldForResource ) ) That&#8217;s it. With that new script, and those new lines added to the &#8220;Create Edit Delete Event&#8230;&#8221; script, users will be notified whenever an edit to an event&#8211;or a newly created event&#8211;overlaps with another event having the same resources. Notes The script does not test for conflicts if the event being edited has no resource&#8211;though you can change that by altering that IF() statement above. The script currently only tests for overlaps within a single table: the same table as the event being edited. All-day events sharing the same resource are also considered to be conflicting. The script is completely abstracted as far as field and layout names go. Once you add this to your file, feel free use literal field and layouts names if you want to change the scripts behavior&#8230; provided you&#8217;re using a single source for your events. If you&#8217;re using multiple sources you may want to keep things abstracted so the script works with any source. The script contains some placeholder lines for records you may wish to omit from conflict\u00a0consideration: in these placeholder lines we omit records where the status is &#8220;pending&#8221;, for example. You may want to add this test to the\u00a0IF() statement shown above as well as including it in the &#8220;Detect Conflicts&#8221; script&#8211; the reason is that &#8220;Detect Conflicts&#8221; will return any conflicting events that overlap the event you&#8217;re editing: so you may be editing event &#8220;A&#8221; which, because of its status does not count towards conflicts, but in the same time frame events &#8220;B&#8221; and &#8220;C&#8221; conflict with each other. In this case, including your status test only in &#8220;Detect Conflicts&#8221; will return a conflict in this case, including it in the IF() statement above will prevent edits to &#8220;A&#8221; from showing the conflict. You can take this script further by implementing a &#8220;notified&#8221; flag so users aren&#8217;t warned about the conflict after they&#8217;ve accepted it one, even making that flag user-specific, if you wanted to. If you&#8217;d like our help extending this script, sign up for an implementation package, and we can make the changes for you, or coach you through making them yourself. For more on resource scheduling in DayBack, including more videos, check out resource scheduling in our docs. We hope this helps make your resource scheduling a little easier and stops conflicts from sneaking up on you. =)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\" \/>\n<meta property=\"og:site_name\" content=\"SeedCode\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seedcoder\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-07T15:28:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png\" \/>\n\t<meta property=\"og:image:width\" content=\"109\" \/>\n\t<meta property=\"og:image:height\" content=\"110\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"seedcode\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dayback\" \/>\n<meta name=\"twitter:site\" content=\"@dayback\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"seedcode\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\"},\"author\":{\"name\":\"seedcode\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\"},\"headline\":\"Showing Conflicts in DayBack Calendar for FileMaker\",\"datePublished\":\"2016-07-07T15:28:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\"},\"wordCount\":599,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png\",\"keywords\":[\"Calendar\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\",\"url\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\",\"name\":\"Showing Conflicts in DayBack Calendar for FileMaker - SeedCode\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png\",\"datePublished\":\"2016-07-07T15:28:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png\",\"width\":109,\"height\":110},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seedcode.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Showing Conflicts in DayBack Calendar for FileMaker\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seedcode.com\/#website\",\"url\":\"https:\/\/seedcode.com\/\",\"name\":\"SeedCode\",\"description\":\"Build the Software You&#039;ve Always Wanted\",\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seedcode.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/seedcode.com\/#organization\",\"name\":\"SeedCode\",\"url\":\"https:\/\/seedcode.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"width\":595,\"height\":189,\"caption\":\"SeedCode\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/seedcoder\",\"https:\/\/x.com\/dayback\",\"https:\/\/www.linkedin.com\/company\/seedcode\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\",\"name\":\"seedcode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"caption\":\"seedcode\"},\"sameAs\":[\"https:\/\/seedcode.com\"],\"url\":\"https:\/\/seedcode.com\/author\/seedcode\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Showing Conflicts in DayBack Calendar for FileMaker - SeedCode","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/","og_locale":"en_US","og_type":"article","og_title":"Showing Conflicts in DayBack Calendar for FileMaker - SeedCode","og_description":"DayBack Calendar does a great job visualizing conflicts in your schedule. But sometimes you may want to alert users when they&#8217;re creating a conflict that they may not see. We&#8217;ve created a simple script you can paste into your copy of DayBack Calendar to help notify users when they&#8217;re creating a conflict. Here&#8217;s the script in action: [ba-youtubeflex videoid=&#8221;xZCajTfEPBA&#8221;] Adding this to your file Note. These instructions are for the older calendar, DayBack Classic. If you&#8217;re using the newest DayBack for FileMaker 19 and higher, you&#8217;ll want the updated instructions and example code here: Preventing Conflicts in DayBack for FileMaker 19. Begin by downloading the script here. That&#8217;s an example file containing just the new &#8220;Detect Conflicts&#8221; script. Next, import this new script into your calendar file: open DayBack&#8211;or the file you&#8217;ve pasted DayBack into&#8211;and from the Scripts menu in FileMaker, select &#8220;Import&#8221;. Once that script has been imported, edit the script named &#8220;Create Edit Delete Event ( SourceNo, Operation ) { Hide, DateStart , DateEnd , TimeStart &#8230; }&#8221;. Scroll towards the bottom and create the lines shown in blue below. Here is the calculation to use for that first IF() line: not IsEmpty ( GetField ( $$sc_SourceTableOccurrenceName[$sc_SourceNo] &amp; \"::\" &amp; $$sc_FieldForResource ) ) That&#8217;s it. With that new script, and those new lines added to the &#8220;Create Edit Delete Event&#8230;&#8221; script, users will be notified whenever an edit to an event&#8211;or a newly created event&#8211;overlaps with another event having the same resources. Notes The script does not test for conflicts if the event being edited has no resource&#8211;though you can change that by altering that IF() statement above. The script currently only tests for overlaps within a single table: the same table as the event being edited. All-day events sharing the same resource are also considered to be conflicting. The script is completely abstracted as far as field and layout names go. Once you add this to your file, feel free use literal field and layouts names if you want to change the scripts behavior&#8230; provided you&#8217;re using a single source for your events. If you&#8217;re using multiple sources you may want to keep things abstracted so the script works with any source. The script contains some placeholder lines for records you may wish to omit from conflict\u00a0consideration: in these placeholder lines we omit records where the status is &#8220;pending&#8221;, for example. You may want to add this test to the\u00a0IF() statement shown above as well as including it in the &#8220;Detect Conflicts&#8221; script&#8211; the reason is that &#8220;Detect Conflicts&#8221; will return any conflicting events that overlap the event you&#8217;re editing: so you may be editing event &#8220;A&#8221; which, because of its status does not count towards conflicts, but in the same time frame events &#8220;B&#8221; and &#8220;C&#8221; conflict with each other. In this case, including your status test only in &#8220;Detect Conflicts&#8221; will return a conflict in this case, including it in the IF() statement above will prevent edits to &#8220;A&#8221; from showing the conflict. You can take this script further by implementing a &#8220;notified&#8221; flag so users aren&#8217;t warned about the conflict after they&#8217;ve accepted it one, even making that flag user-specific, if you wanted to. If you&#8217;d like our help extending this script, sign up for an implementation package, and we can make the changes for you, or coach you through making them yourself. For more on resource scheduling in DayBack, including more videos, check out resource scheduling in our docs. We hope this helps make your resource scheduling a little easier and stops conflicts from sneaking up on you. =)","og_url":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/","og_site_name":"SeedCode","article_publisher":"https:\/\/www.facebook.com\/seedcoder","article_published_time":"2016-07-07T15:28:02+00:00","og_image":[{"width":109,"height":110,"url":"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png","type":"image\/png"}],"author":"seedcode","twitter_card":"summary_large_image","twitter_creator":"@dayback","twitter_site":"@dayback","twitter_misc":{"Written by":"seedcode","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#article","isPartOf":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/"},"author":{"name":"seedcode","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f"},"headline":"Showing Conflicts in DayBack Calendar for FileMaker","datePublished":"2016-07-07T15:28:02+00:00","mainEntityOfPage":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/"},"wordCount":599,"commentCount":3,"publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"image":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png","keywords":["Calendar"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/","url":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/","name":"Showing Conflicts in DayBack Calendar for FileMaker - SeedCode","isPartOf":{"@id":"https:\/\/seedcode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage"},"image":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png","datePublished":"2016-07-07T15:28:02+00:00","breadcrumb":{"@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#primaryimage","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2016\/07\/Conflict.png","width":109,"height":110},{"@type":"BreadcrumbList","@id":"https:\/\/seedcode.com\/filemaker-resource-scheduling-conflicts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seedcode.com\/"},{"@type":"ListItem","position":2,"name":"Showing Conflicts in DayBack Calendar for FileMaker"}]},{"@type":"WebSite","@id":"https:\/\/seedcode.com\/#website","url":"https:\/\/seedcode.com\/","name":"SeedCode","description":"Build the Software You&#039;ve Always Wanted","publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seedcode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/seedcode.com\/#organization","name":"SeedCode","url":"https:\/\/seedcode.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","width":595,"height":189,"caption":"SeedCode"},"image":{"@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/seedcoder","https:\/\/x.com\/dayback","https:\/\/www.linkedin.com\/company\/seedcode\/"]},{"@type":"Person","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f","name":"seedcode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","caption":"seedcode"},"sameAs":["https:\/\/seedcode.com"],"url":"https:\/\/seedcode.com\/author\/seedcode\/"}]}},"_links":{"self":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/9918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/comments?post=9918"}],"version-history":[{"count":0,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/9918\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media\/9925"}],"wp:attachment":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media?parent=9918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/categories?post=9918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/tags?post=9918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}