You would need to separate your Date/Trainer pairs into their own table, so each Date/Trainer pair becomes their own record in a new table. Then, you can create your calendar from that new table.
Back in your main table, you would link each session to multiple Date/Trainer pairs in the new table. But your calendar would be generated from your new table.
Hope this helps! If this answers your question, could you please mark this comment as the solution to your question? This will help other people who have a similar question. If not, please let me know what else you need help with!
You would need to separate your Date/Trainer pairs into their own table, so each Date/Trainer pair becomes their own record in a new table. Then, you can create your calendar from that new table.
Back in your main table, you would link each session to multiple Date/Trainer pairs in the new table. But your calendar would be generated from your new table.
Hope this helps! If this answers your question, could you please mark this comment as the solution to your question? This will help other people who have a similar question. If not, please let me know what else you need help with!
Hi Scott !
Thanks for your help ! :thumbs_up:
Not sure that I understand completely : you mean having 3 tables ?
I already have the 2 first tables and since date where computed (actually in my use case, I have 12 dates with a regular pattern) I do not have a third one for that.
And I need to be able to change the trainer who was planned at a certain date.
I therefore cannot pair trainer and date in a single cell.
My guess is that I would need a script that would copy/paste in a new table the pair Trainer / Date and run it every time the planning has changed.
I think this is the only solution to get this pair in a dynamic way.
Am I right ?
Hi Scott !
Thanks for your help ! :thumbs_up:
Not sure that I understand completely : you mean having 3 tables ?
I already have the 2 first tables and since date where computed (actually in my use case, I have 12 dates with a regular pattern) I do not have a third one for that.
And I need to be able to change the trainer who was planned at a certain date.
I therefore cannot pair trainer and date in a single cell.
My guess is that I would need a script that would copy/paste in a new table the pair Trainer / Date and run it every time the planning has changed.
I think this is the only solution to get this pair in a dynamic way.
Am I right ?
No, you would have 2 tables:
- Training Packages
- Sessions
In your sessions table, you would have 2 fields: date and trainer.
No, you would have 2 tables:
- Training Packages
- Sessions
In your sessions table, you would have 2 fields: date and trainer.
Yes, it is what I thought : if I want to have this, either I do it manually (which won’t be sustainable due to the large number of sessions), either I need to write a script to split from the sessions.
I somehow hoped that there was a workaround !
Thanks @ScottWorld !
Yes, it is what I thought : if I want to have this, either I do it manually (which won’t be sustainable due to the large number of sessions), either I need to write a script to split from the sessions.
I somehow hoped that there was a workaround !
Thanks @ScottWorld !
You’re welcome! Please mark one of my comments as the solution, which will help others in the future who have this same question!