Does VBA code work in Zoho Sheets?

Does VBA code work in Zoho Sheets?

I'm new to Zoho Sheets and would love to be able to share my spreadsheet with the following code. It works perfectly in Excel (adds a timestamp to each row when the row is updated), but doesn't seem to work in Zoho. Can you give me some assistance into what I might be doing wrong?

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$3" And Target
Range("A1") = Date
End If
End Sub

Thanks,
Jenny