If If then Else | 2 x if's -> Is it possible

Looking to use 2 x if statements in the one: if then else condition
IE
If X is > 100
and
if Y is > 300

Then: Complete

Else: Incomplete

Background: The App is logging user training.
IN order for training to be Complete, a user must log a Total of 5 hours (Y) but the Total must included at least 1 hour of a specific type of training (X)
IE 5 Hours of training including 1 hour of specific training

If X is <= 100 then Incomplete
Else If Y is <= 300 then Incomplete
Else Complete

3 Likes