I have a datasheet with many columns. One column named "numbers" has a data source as a field of a table, another column called "binary version" displays this in binary by calling a routine to convert. When I change the value in "numbers", I want the "binary version" to change. At present I have the Data source for the "binary version" column as =convert() and this convert function should return the binary string representing the number. I have tried binaryversion.requery as the exit event of "numbers" and it works, but repaints the entire coulumn (all records). How do i change this to update only the current record, and not affect the entire column ??