It depends on how your data is structured, but you could start with a simple linear model (even though you might violate some assumptions). Download R and RStudio, set up your data in long format in Excel, save your file in csv and import it to R. Then use the built in lm function to model house\_prices \~ time. The output will tell you by how much the prices vary by time unit and if that relationship is significant. You can use a package like flexplot to easily visualize your model afterwards.
Again, this is a fairly simple analysis and there are a bunch of stuff you should/could do, but if you're in a bind, this will probably do.