Hi Jim,
Thank you so much for your reply. I have made changes based on your suggestion. My script is showing below:
dt2:ReadTime << Data Type( Numeric ) << Set Modeling Type( Continuous ) << Format( "yyyy-mm-ddThh:mm:ss", 19 );
If( Date Difference( Lag( :ReadTime ), :ReadTime, "mm" ) > 5,
dataGood = "Missing Data",
dataGood = "No Missing Data"
);
The data type and format have been changed successfully, however, I am confused about how to check dataGood. Do I need to create a new column for dataGood?
Thanks a lot!