Enum XlsxCellValueKind
What a XlsxCellValue holds.
public enum XlsxCellValueKind
Fields
Blank = 0No value. The cell still carries its style, which is how a blank cell is shaded or bordered.
Text = 1Text, written as an inline string.
Number = 2A number, written as a bare numeric cell so Excel can total it.
Boolean = 3A boolean, written as
t="b"with 0 or 1.Date = 4A date or time, written as a serial number under a date number format.
Error = 5An error literal such as
#VALUE!, written ast="e".