Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Sources/CoreXLSX/Worksheet/Cell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,16 @@ public struct Cell: Codable, Equatable {
public struct Formula: Codable, Equatable {
public let calculationIndex: Int?
public let value: String?
public let type: String?
public let ref: String?
public let shared: Int?

enum CodingKeys: String, CodingKey {
case calculationIndex = "ca"
case value = ""
case type = "t"
case ref = "ref"
case shared = "si"
}
}

Expand Down