Start by saving the values that you read. An array would be handy for this. Then next time you read the same pot you can compare the value now with the previous reading to determine whether it has changed and if so, display a message. For sanity you probably want to only display something when the value has changed by a significant amount. Something like
if (abs(oldValue - newValue) > margin)
{
//do something
}