Here's an idea. This idea is based on the notion that you will be entering data manually. I am making a big assumption that one more manual step will be OK with you.
1. Assume you are using a table like the one created by the JSL below, similar to the image above.
2. Every time you add a row, the "date w formula" column will update in real time, which contains the today() function suggested by Dave@Pega-Analytics,
3. After you are done, and before you close the table, use Copy and Paste to Copy the values from "date w formula" to the "static date" column. The values will be copied and will be static. Note: only copy the empty values in a single session.
4. Save the table, and this method can be repeated on future days as more data comes in and needs to be entered manually.
/
/JSL to create sample table (I hope the formatting persists)
dt = new table("example", Add Rows(4),
New Column( "my raw data", Numeric, Set Values( [1, 2, 3, 4] )
),
New Column( "date w formula", Numeric, "Continuous",
Format( "m/d/y h:m:s", 23, 0 ), Input Format( "m/d/y h:m:s", 0 ),
Formula( Today() )
),
New Column( "static date", Numeric, "Continuous",
Format( "m/d/y h:m:s", 23, 0 ),
)
);