尝试在 Sharepoint 网站上使用 JSON 合并两列

Trying to combine two columns using JSON on Sharepoint site

我是 JSON 的新手,我一直在尝试开发 JSON 代码来组合两列的结果以设置第三列的颜色,我一直在尝试两个现在几周没有运气。这段代码在一个名为 Mock 的专栏中,我正在尝试阅读一个名为 Process 的专栏,该专栏目前包含 Mock 这个词。我有一个名为 Status 的第二列,其中包含 Complete 一词。目前我感兴趣的单元格中有日期 2/2/2022。我在单元格中看不到任何日期。

{
 "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column- 
  formatting.schema.json",
 "elmType": "div",
 "txtContent": "@currentField",
 "style": {
 "background-color": "=if(Number(@currentField)==0,if($Process == 'Mock' && if($Status == 
 'Complete', '#0000FF','white'))"
  }
}

请使用以下JSON格式:

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
  "elmType": "div",
  "txtContent": "@currentField",
  "style": {
    "background-color": "=if(Number(@currentField) == 0,'',if(([$Process] == 'Mock' && [$Status] == 'Complete'),'#0000FF','#FFFFFF'))"
  }
}