Hey All,
I have a formula below that checks if a rental is currently Active.
I would like it to include bookings that are finishing today also as an “Active Rental ” ( and also bookings that start today). Is there a way to do that (or a better way to construct this formula?
My formula is below;
IF( IS_AFTER( {Date Started}, TODAY() ), “Upcoming ”, IF( IS_AFTER( {Date Ending}, TODAY() ), “Active Rental
”, “Completed
” ) )
Thanks for any help.
Cheers,
Harry