OLEのExcel操作で、セルの中の表示されている値が欲しければget_Text() / 式が欲しければget_Formula()を使う

CRange Cells = Worksheet.get_Cells();
CRange Cell = Cells.get_Item(COleVariant((long)lCellRow), COleVariant((long)lCellColumn)).pdispVal;

CString str = Cell.get_Text().bstrVal;
CString str2 = Cell.get_Formula().bstrVal;

Cell.put_Value2(COleVariant(Cell.get_Text().bstrVal));		// そのまま再入力でChange/Calculateイベントを発生させる
Cell.put_Formula(COleVariant(Cell.get_Formula().bstrVal));	// そのまま再入力でChange/Calculateイベントを発生させる