Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 674 Bytes

emptyvalueformat.md

File metadata and controls

46 lines (40 loc) · 674 Bytes

Empty value format

Value exported for empty cells.

Null will export empty cells with a standard JSON null value while Empty String will export an empty string "".

Example:

Sheet name: Directors

Name Skill
George Creation
JJ

Null Output:

{
  "Directors" : {
    "George" : {
      "Name" : "George",
      "Skill" : "Creation"
    },
    "JJ" : {
      "Name" : "JJ",
      "Skill" : null
    }
  }
}

Empty String Output:

{
  "Directors" : {
    "George" : {
      "Name" : "George",
      "Skill" : "Creation"
    },
    "JJ" : {
      "Name" : "JJ",
      "Skill" : ""
    }
  }
}