User409696431 posted
First, decide what you want the value to default to if the data is null.
Then, test for null and replace it with what you want the default to be:
<%#(Eval("Data") == null ? "0" : Eval("Data"))%>
This example checks Data for null, returns 0 if it is null, and returns its value otherwise.