Also, following up on my above post that has the corrected Column Name but that still shows a blank List, the code below is my last version that does still work, just in case that help (??):
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/view-formatting.schema.json",
"hideSelection": true,
"hideColumnHeader": true,
"rowFormatter": {
"elmType": "div",
"_comment_": "MAIN DIV",
"attributes": {
"class":"ms-bgColor-neutralTertiaryAlt"
},
"style": {
"display":"flex",
"flex-wrap":"wrap",
"align-items":"stretch",
"flex-direction":"row",
"padding":"20px",
"margin-bottom":"16px",
"max-width":"930px",
"border-radius":"8px"
},
"children": [
{
"elmType": "div",
"_comment_": "FO, Machine and Customer",
"style": {
"flex-grow": "1",
"display": "flex",
"flex-direction": "column",
"flex-wrap": "nowrap",
"align-items": "left",
"max-width": "360px",
"min-width": "205px"
},
"children": [
{
"elmType": "div",
"_COMMENT_":"FO AND MACHINE",
"style":{
"display":"block",
"font-size":"15px",
"font-weight":"normal"
},
"children": [
{
"elmType": "span",
"txtContent": "=[$Title]",
"style": {
"display": "=if([$Title] == '', 'none', 'block')"
},
"attributes": {
"class": "ms-fontSize-l ms-fontWeight-semibold ms-fontColor-neutralPrimary"
}
},
{
"elmType": "span",
"txtContent": "[$MACHINE]",
"style": {
"display": "=if([$MACHINE] == '', 'none', 'block')"
}
},
{
"elmType": "span",
"txtContent": "='CUSTOMER' + [$CUSTOMER]",
"style": {
"display": "=if([$CUSTOMER] == '', 'none', 'block')",
"padding-top": "20px"
}
}
]
}
]
},
{
"elmType": "div",
"_comment_": "DIV TWO",
"style": {
"flex-grow":"1",
"display":"flex",
"flex-direction":"column",
"flex-wrap":"nowrap",
"align-items":"stretch",
"max-width":"260px"
}
},
{
"elmType": "div",
"_comment_": "DIV THREE",
"style":{
"flex-grow": "1",
"display": "flex",
"flex-direction": "column",
"align-items": "left",
"max-width": "310px",
"min-width": "155px"
},
"children": [
{
"elmType": "div",
"_COMMENT_":"Sales Approver",
"style":{
"display":"block",
"font-size":"15px",
"font-weight":"normal"
},
"children": [
{
"elmType": "span",
"txtContent":"[$Sales_x0020_Approver]",
"style":{
"padding-right":"5px"
}
},
{
"elmType": "span",
"txtContent":"[$Sales_x0020_Approval_x0020_Comme]",
"style":{
"padding-right":"5px"
}
}
]
},
{
"elmType": "div",
"_COMMENT_":"Finance Approver",
"style":{
"display":"block",
"font-size":"15px",
"font-weight":"normal"
},
"children": [
{
"elmType": "span",
"txtContent":"[$Finance_x0020_Approver]",
"style":{
"padding-right":"5px"
}
},
{
"elmType": "span",
"txtContent":"[$Finance_x0020_Workflow_x0020_Com]",
"style":{
"padding-right":"5px"
}
}
]
}
]
}
]
}
}