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.
EPSPlusを使用した数式で計算された値を持つセルをロックしたい。
したがって、数式で使用されるセルが変更されると、それに応じてセル値が変更されますが、セルを直接編集することはできません。これは可能ですか?
ワークシートを保護し、必要なセルをロックするだけです。これは数式に影響しないはずです。
worksheet.Protection.IsProtected = true; worksheet.Cells["A1:B1"].Style.Locked = true;