Jump to content

This topic is 7487 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

I work for a national radiostation that has some programs that are broadcasted 'over' and after midnight. In our schedules, these programmes still belong to the past day, but of course FM will correctly change the date after midnight. Is there a way to tell FM to change the date and day of the week at 06:00 AM??!

Any help is very very welcome, since this is a big brainer for all involved and can cause all kinds of misunderstandings.

Posted

Judging by the question, do you use a 24 hour click to avoid the whole "AM/PM" issue? I'm assuming that you already keep track of "Program_Date" and "Program_Time". Create one more field, call it "Schedule_Date" or whatever makes sense to you. Make it a calculated field, with "Date" as the result.

Set the calculation: If(Hour(Program_Time)*60+Minute(Program_Time)<360, Program_Date-1,Program_Date)

This should work to let you know the programming date that the show STARTED. To find the Program_Date the show ENDED, insert the program run time in the calculation like this.

Set the calculation:

If(Hour(Program_Time)*60+Minute(Program_Time)+Run_Time<360, Program_Date-1,Program_Date)

This is written with FM6, and there may be a better way to do this in FM7, but I'm still on the old version. Also, you may have to convert the "," to ";" if you are using a different language version.

Hope this helps!

Paul

This topic is 7487 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.