Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 423 Bytes

nullvalueformat.md

File metadata and controls

32 lines (25 loc) · 423 Bytes

Null value format

Value exported for cells containing the string "null".

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

Example:

Sheet name: Test

ID Value
Null Value null

Null Output:

{
  "Test": {
    "Null Value": null
  }
}

String Output:

{
  "Test": {
    "Null Value": "null"
  }
}