Good Morning/Afternoon/Evening

If(

    Hour(Now()) < 12,

    “Good Morning ” & First(Split(User().FullName, ” “)).Value,

    If(

        Hour(Now()) < 17,

        “Good Afternoon ” & First(Split(User().FullName, ” “)).Value,

        “Good Evening ” & First(Split(User().FullName, ” “)).Value

    )

)