CellItem
type CellItem = | Cell | DefinedName;Type alias representing either a Cell or DefinedName. Most code should migrate to using explicit Cell or DefinedName types, but this type is useful for functions that can handle both.
type CellItem = | Cell | DefinedName;Type alias representing either a Cell or DefinedName. Most code should migrate to using explicit Cell or DefinedName types, but this type is useful for functions that can handle both.