Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 XLSM 工作簿上工作,我试图从列中删除数据,留下包含使用 POI 的列的公式。如何实现这一点。
您能否澄清这个问题,您是否正在寻找可以删除工作表上所有不包含公式的单元格内容的 vba 代码?
以下代码将删除范围 A1:Z100 中的所有非公式
for each c in Range("A1:Z100").cells If c.HasFormula = False then c.ClearContents next
希望这可以帮助 :)