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"
.
Sheet name: Test
ID | Value |
---|---|
Null Value | null |
Null Output:
{
"Test": {
"Null Value": null
}
}
String Output:
{
"Test": {
"Null Value": "null"
}
}