Forum Discussion
AustinK
6 years agoQrew Commander
if(
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date]
)
If you want it to have some kind of duration if there is no status you would do it like this.
if(
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date],
[other] - [duration]
)
You are going to want a formula duration field.
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date]
)
If you want it to have some kind of duration if there is no status you would do it like this.
if(
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date],
[other] - [duration]
)
You are going to want a formula duration field.
SyaefulBahri3
6 years agoQrew Trainee
This is working for me to achieve my purpose
if(
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date]
)
I'm curious about what do you want to achieve with the second formula?. Because it's show error for [other] - [duration], [other] is not recognize
Can you please explain it to me?
Many thanks
------------------------------
Syaeful Bahri
------------------------------
if(
[Recruitment Type] = "open", [contracted date] - [advertisement date],
[Recruitment Type] = "direct", [contracted date] - [interview/assessment date],
[Recruitment Type] = "restricted", [contracted date] - [selection panel date]
)
I'm curious about what do you want to achieve with the second formula?. Because it's show error for [other] - [duration], [other] is not recognize
Can you please explain it to me?
Many thanks
------------------------------
Syaeful Bahri
------------------------------
- AustinK6 years agoQrew CommanderBasically if none of the options are true it will just be blank. With the second formula it will display the very last condition instead. So if everything comes up false you will still be able to show a duration there. Something like [Date Created] - Today() would work since it will tell you the time the thing was open and had no status assigned to it. If your Recruitment Type field is required then you wouldn't really need the last false condition since there would always be a status (open, direct, restricted) on each record.
If that doesn't make sense let me know.