简体   繁体   English

HRESULT的异常:0x800A03EC INDIRECT

[英]Exception from HRESULT: 0x800A03EC INDIRECT

I'm trying to run excel indirect function from c#. 我正在尝试从C#运行excel间接函数。 I used the following code but got the exception 我使用了以下代码,但出现了异常

"A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in System.Dynamic.dll" “ System.Dynamic.dll中发生了类型'System.Runtime.InteropServices.COMException'的第一次机会异常”

Additional information: Exception from HRESULT: 0x800A03EC 附加信息:HRESULT异常:0x800A03EC

Excel.Range vehicle_makes_dropdown = xlWorkSheet1.get_Range("B2", "B101");
vehicle_makes_dropdown.Formula = "=indirect(A2)";
vehicle_makes_dropdown.Validation.Add(Excel.XlDVType.xlValidateList, XlDVAlertStyle.xlValidAlertInformation, XlFormatConditionOperator.xlEqual, vehicle_makes_dropdown.Formula, misValue);

vehicle_makes_dropdown.Validation.IgnoreBlank = true;
vehicle_makes_dropdown.Validation.InCellDropdown = true;

Updated Code is 更新后的代码为

Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application();
Microsoft.Office.Interop.Excel.Workbook wlb = app.Workbooks.Open(@"D:\Templates2.xlsx");
Microsoft.Office.Interop.Excel.Worksheet MySheet = (Microsoft.Office.Interop.Excel.Worksheet)wlb.Sheets[1];


Microsoft.Office.Interop.Excel.Range oRange;

//  Get Subject 



// string subjetcs = string.Empty;
//List<Topics> lstsubject = PickSubject(out subjetcs);
AdminQuestionCommonModel objAdminQuestioncommonModel = new AdminQuestionCommonModel();
// _Question.BindQuestionDropDowns(objAdminQuestioncommonModel);
objAdminQuestioncommonModel.ExcelTopics = _Question.GetTopics(subjectId);

List<SubjectBO> lstTopics = GlobalService.GetAllTopicsandSubtopics(5, subjectId, 0); // get all topics of Subjects
//if (lstsubject.Count > 0)
if (lstTopics.Count > 0)
{
    Microsoft.Office.Interop.Excel.Worksheet IDSheet = (Microsoft.Office.Interop.Excel.Worksheet)wlb.Sheets[2];


    int rows = 1;
    int subrows = 1;
    IDSheet.Unprotect("123#");


    //foreach (var item in lstsubject)
    foreach (var Topic in lstTopics)
    {

        var TopicName = Topic.Topic_SubTopic.Trim();
        TopicName = TopicName.Replace(".", "_").Replace("&", "_").Replace(" ", "_").Replace("__", "_");

        // Add the header the first time through  
        IDSheet.Cells[rows, 1] = Topic.SubjectTopicId.ToString();
        IDSheet.Cells[rows, 2] = TopicName;

        //   List<SubTopics> lst = PickSubTopic(item.TopicName, item.TopicID);
        List<SubjectBO> lstsubtopics = _Question.GetSubTopics(subjectId, Topic.SubjectTopicId);

        int startindex = subrows;
        foreach (var subtopics in lstsubtopics)
        {
            IDSheet.Cells[subrows, 4] = subtopics.Topic_SubTopic;
            IDSheet.Cells[subrows, 5] = subtopics.SubjectTopicId.ToString();
            IDSheet.Cells[subrows, 6] = TopicName;
            IDSheet.Cells[subrows, 7] = Topic.SubjectTopicId.ToString(); 
            subrows++;
        }
        if (lstTopics.Count > 0)
        {
            wlb.Names.Add(TopicName, IDSheet.get_Range("D" + startindex + ":D" + (subrows - 1)));
        }
        subrows++;
        rows++;

    }


    wlb.Names.Add("Topics", IDSheet.get_Range("B1:B" + (rows - 1)));

    Microsoft.Office.Interop.Excel.Range Range = MySheet.get_Range("B2", "B800");

    Range.Validation.Delete();

    Range.NumberFormat = "Text";
    //Range.Cells.Value = lstsubject[0].TopicName.ToString();
    Range.Cells.Value = "Text";

    Range.Validation.Add(Microsoft.Office.Interop.Excel.XlDVType.xlValidateList, Microsoft.Office.Interop.Excel.XlDVAlertStyle.xlValidAlertStop
    , Microsoft.Office.Interop.Excel.XlFormatConditionOperator.xlBetween
    , Formula1: "=Topics"
    );

    Range.Validation.InCellDropdown = true;
    Range.Validation.IgnoreBlank = true;



    oRange = MySheet.get_Range("c2","c3");

    oRange.Validation.Delete();

    oRange.NumberFormat = "Text";



    oRange.Validation.Add(Microsoft.Office.Interop.Excel.XlDVType.xlValidateList, Microsoft.Office.Interop.Excel.XlDVAlertStyle.xlValidAlertStop
    , Microsoft.Office.Interop.Excel.XlFormatConditionOperator.xlBetween
    , Formula1: "=INDIRECT(B2)"
     );

    oRange.Validation.InCellDropdown = true;
    oRange.Validation.IgnoreBlank = true;

    IDSheet.Protect("123#");
    //Range.Validation.InCellDropdown = true;
    //Range.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.FromArgb(255, 217, 217, 0));



    app.Visible = true;
}

您需要在公式中的单元格引用vehicle_makes_dropdown.Formula = "=indirect(""A2"")";加上双引号: vehicle_makes_dropdown.Formula = "=indirect(""A2"")";

oRange.Validation.Add(Microsoft.Office.Interop.Excel.XlDVType.xlValidateList,
    Microsoft.Office.Interop.Excel.XlDVAlertStyle.xlValidAlertStop,
    Microsoft.Office.Interop.Excel.XlFormatConditionOperator.xlBetween,
    Formula1: "=INDIRECT(if(B2=\"\",A5000,B2))"

// see also http://user.qzone.qq.com/26149705/blog/1474296940 //另请参见http://user.qzone.qq.com/26149705/blog/1474296940

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM