How to export user-defined function from grid to excel workbook?
In order to export a user-defined formula library function from Grid to Excel, the following steps have to be followed.
Step 1: Create an Excel Add-In
file (*.xla) including the user-defined function as illustrated in the
following steps.
- Create a new empty workbook and
click Save As from the File menu.
- In the Save As dialog box, select
the location to save the workbook. Enter the file name for the Add-In
workbook, and then select the type as Excel Add-In (*.xla).
- Click Save, and then press ALT+ F11 to open the VBA Editor. Now, you can create a custom function through the VBA Editor by inserting a module.
Step 2: Now, bind the add-in file path and the custom method name with the GridExcelConverterControl through the AddCustomFunction method.
The following screenshot illustrates how to create the user-defined function through the VBA editor.

The XLA file will not be visible in Excel because Add-Ins are never visible. All changes must be made to the VBA Editor only.
VBA Coding
Public Function Age(DOB As Date)
Dim cd1 As Date
cd1 = Format(Now, "dd/MM/yyyy")
Dim d1 As Integer
d1 = Year(cd1)
Dim d2 As Integer
d2 = Year(DOB)
If DOB = 0 Then
Age = ""
Else
Age = d1 - d2
End If
End Functionstring xla = "D:\Fun.xlam";
Syncfusion.GridExcelConverter.GridExcelConverterControl gecc = new Syncfusion.GridExcelConverter.GridExcelConverterControl();
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Filter = "Files(*.xls)|*.xls";
saveFileDialog1.DefaultExt = ".xls";
if (saveFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
gecc.AddCustomFunction(xla, "Age", saveFileDialog1.FileName);
gecc.GridToExcel(this.gridControl1, saveFileDialog1.FileName);
Process.Start(saveFileDialog1.FileName);
}Dim xla As String = "D:\Fun.xlam"
Dim gecc As New Syncfusion.GridExcelConverter.GridExcelConverterControl()
Dim saveFileDialog1 As New SaveFileDialog()
saveFileDialog1.Filter = "Files(*.xls)|*.xls"
saveFileDialog1.DefaultExt = ".xls"
If saveFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
gecc.AddCustomFunction(xla, "Age", saveFileDialog1.FileName)
gecc.GridToExcel(Me.gridControl1, saveFileDialog1.FileName)
Process.Start(saveFileDialog1.FileName)
End IfThe screenshot below displays the user-defined function exported to Excel.

Sample
Link:
Conclusion
I hope you enjoyed learning about how to export user-defined function from grid to excel workbook.
You can refer to our WinForms GridControl feature tour page to know about its other groundbreaking feature representations and WinForms GridControl documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!