Create a new numeric column
In the Col Info dialog window, set the format to m/d/y
Set a formula for the column of
Informat( :Day of Process Date, "Format Pattern", "<Month> <D>, <YYYY>" )
Here is a script that when run creates the above example data table
New Table( "Format Pattern",
Add Rows( 1 ),
New Column( "Day of Process Date",
Character,
"Nominal",
Set Values( {"November 8, 2024"} )
),
New Column( "New date",
Numeric,
"Nominal",
Format( "m/d/y", 12 ),
Input Format( "m/d/y" ),
Formula(
Informat(
:Day of Process Date,
"Format Pattern",
"<Month> <D>, <YYYY>"
)
)
)
)
Jim