4
單元格A1包含值「= A2」 單元格A2包含「Microsoft」。在c中訪問Excel單元格值#
當我通過C#訪問單元格A1時,我得到「Microsoft」。
如何訪問單元格A1的「= A2」值?
Microsoft.Office.Interop.Excel.Range cell //it points to address A1
object obj=cell.Value2; //Here obj contains "Microsoft" but I want "=A2"