Hey there, this can be achieved with a combination of an if() + and() function.
Try this formula and replace the Start Date and End Date with the names of your fields if need be:
IF(AND(IS_AFTER(NOW(), {Start Date}), IS_BEFORE(NOW(), {End Date})), 'Active', 'Inactive')
Cheers!