Dear all,
我想在D2欄列開始設定,幫我判斷C2欄列起,其C2、C3、C4.....欄位內的資料是否是帶有公式
若是 ...
jsc0518 發表於 2021-12-16 11:05
請測試看看,謝謝
Sub test()
For i = 2 To [c65536].End(3).Row()
If Cells(i, "c").HasFormula Then
Cells(i, "d") = "有公式"
Else
Cells(i, "d") = "無公式"
End If
Next
End Sub作者: jsc0518 時間: 2021-12-16 17:13