我在谷歌表格中使用以下內容來檢查列是否已填充資料。但是它為整個列填充是,我只有第一行中的樣本值。
=ArrayFormula(if(row(AC:AC)=1,"Has Certificate Been Generated?",ArrayFormula(if(and(AC:AC="",AG:AG="",AK:AK="",AO:AO=""),"No","Yes"))))
想法?
TYIA
uj5u.com熱心網友回復:
你不能在這樣的 ArrayFormula 中使用 AND() 。嘗試這樣的事情:
=ArrayFormula(
if(
row(AC:AC)=1,
"Has Certificate Been Generated?",
if((AC:AC="")*(AG:AG="")*(AK:AK="")*(AO:AO=""),
"No",
"Yes"
)
)
)
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/446565.html
標籤:谷歌表格
