Hi All, I want to set fix value on the earliest and latest, earliest should be 6PM and the latest should be 7AM the next day how can I do this? TIA
Hi
If you are referring to today 6PM and tomorrow 7AM then try this:
earliest=@d+18h latest=@d+31h
If you are referring to Yesterday 6PM and Today 7AM then try this:
earliest=@d-6h latest=@d+7h
let me know if this helps!
Hi
If you are referring to today 6PM and tomorrow 7AM then try this:
earliest=@d+18h latest=@d+31h
If you are referring to Yesterday 6PM and Today 7AM then try this:
earliest=@d-6h latest=@d+7h
let me know if this helps!
Try this:
earliest=@d+18h latest=@d+31h
Hi @mjlsnombrado
Try
<earliest>@d+18h</earliest>
<latest>+1d@d+7h</latest>
Please let me know...