diff --git a/NEW/src/JdeScoping.ExcelIO/Mapping/ExcelFormats.cs b/NEW/src/JdeScoping.ExcelIO/Mapping/ExcelFormats.cs
new file mode 100644
index 0000000..f35e762
--- /dev/null
+++ b/NEW/src/JdeScoping.ExcelIO/Mapping/ExcelFormats.cs
@@ -0,0 +1,19 @@
+namespace JdeScoping.ExcelIO.Mapping;
+
+///
+/// Standard Excel format strings for column configuration.
+///
+public static class ExcelFormats
+{
+ /// Text format (default).
+ public const string Text = "@";
+
+ /// Date format: MM/dd/yyyy
+ public const string Date = "[$-409]MM/dd/yyyy;@";
+
+ /// Timestamp format: m/d/yy h:mm AM/PM
+ public const string Timestamp = "[$-409]m/d/yy h:mm AM/PM;@";
+
+ /// Default width for wrapped text columns.
+ public const double WrappedColumnWidth = 65;
+}