繁体   English   中英

如何将其转换为自定义Excel功能?

[英]how do I turn this into a custom excel function?

我有以下C#代码,可从数据库中提取数据并在Excel加载时使用数据填充单元格A1。 我如何将其转换为自定义函数,从而在用户键入公式(即'= getMyData(“ mycustominput”)')而不是在加载excel时填充该字段?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Excel;
using MySql.Data.MySqlClient; 

namespace custom_excel
{
public partial class ThisAddIn
{

    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        Excel.Worksheet activeWorksheet = ((Excel.Worksheet)Application.ActiveSheet);
        Excel.Range firstRow = activeWorksheet.get_Range("A1", missing);
        firstRow.EntireRow.Insert(Excel.XlInsertShiftDirection.xlShiftDown, System.Type.Missing);
        Excel.Range newFirstRow = activeWorksheet.get_Range("A1", missing);

        string connString = "Server=localhost;Port=3306;Database=test;Uid=name;password=password";
        MySqlConnection conn = new MySqlConnection(connString);
        MySqlCommand command = conn.CreateCommand();
        command.CommandText = "SELECT field_value FROM customers LIMIT 1";
        try
        {
            conn.Open();
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        MySqlDataReader reader = command.ExecuteReader();
        while (reader.Read())
        {
             newFirstRow.Value2 = reader["field_value"].ToString();
        }

    }

    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    {
    }

    private void InternalStartup()
    {
        this.Startup += new System.EventHandler(ThisAddIn_Startup);
        this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    }
}

}

出门在这里,但是您看过ExcelDNA吗? 听起来可能对您要尝试的操作有用。

还有从埃里克·卡特有些较老的文章,可能是使用的,它使用一个自动化加载项。 看来您可以在没有任何第三方库的情况下进行操作。

暂无
暂无

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

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