Equation IF statement (with Text)

Apologies for the topic guys as I donโ€™t know how to address it :slight_smile:

So I have a nested if statement made in Excel and trying to figure out how to do this here in Knack :slight_smile:

Appreciated the help in advance :slight_smile:

=IF(
    uplift_dollar_value / proposed_base_fee% > 0,
    uplift_dollar_value / gross_fee%,
    IF(
        uplift_dollar_value / proposed_base_fee% = 0,
        "No Change",
        "Above"
    )
)