Hi

I'm new to VBA coding and just learning about string functions.

I keep getting the following error when trying to use the StrReverse function to reverse the order of a string:
Compile error: Wrong number of arguments or invalid property assignment

Here is the code I am using (Excel 2016, VBA v7.1):
Sub StrReverseTest()

    Dim MyString As String
    MyString = StrReverse("Hello")
    MsgBox MyString

End Sub
Grateful for any advice!