Articles in this section
Category / Section

How to get the column index from column name using XlsIO?

1 min read

This article explains how to get the column index from column name using WinForms XlsIO in C#/VB.NET.

How to get column index from column name of Excel using XlsIO?

Column Index can be retrieved using XlsIO by passing column name as parameter to GetColumnIndex method of RangeImpl class.


Sample code to get the column index from column name.

int index = RangeImpl.GetColumnIndex("AA");

NOTE: RangeImpl will be available in the namespace Syncfusion.XlsIO.Implementation.


Download Complete Sample


To know more about row column manipulation of Excel using XlsIO, please refer the documentation.


The following C#/VB.NET complete code snippet shows how to get the column index from column name using XlsIO.

C#

using Syncfusion.XlsIO;
using Syncfusion.XlsIO.Implementation;
using System.IO;
 
namespace GetColumnIndexFromColumnName
{
    class Program
    {
        static void Main(string[] args)
        {
             using (ExcelEngine excelEngine = new ExcelEngine())
            {
                IApplication application = excelEngine.Excel;
                application.DefaultVersion = ExcelVersion.Excel2016;
 
                //Creating new workbook
                IWorkbook workbook = application.Workbooks.Create(1);
 
                //Retrieves the index of Column 'AA'
                int index = RangeImpl.GetColumnIndex("AA");
 
                //Saving and closing the workbook
                Stream stream = File.Create("Output.xlsx");
                workbook.SaveAs(stream);
            }
        }
    }
}

 

VB

Imports Syncfusion.XlsIO
Imports Syncfusion.XlsIO.Implementation
Imports System.IO
 
Module Program
    Public Sub Main(ByVal args As String())
 
        Using excelEngine As ExcelEngine = New ExcelEngine()
 
            Dim application As IApplication = excelEngine.Excel
            application.DefaultVersion = ExcelVersion.Excel2016
 
            'Creating new workbook
            Dim workbook As IWorkbook = application.Workbooks.Create(1)
 
            'Retrieves the index of Column 'AA'
            Dim index As Integer = RangeImpl.GetColumnIndex("AA")
 
            'Saving and closing the workbook
            Dim stream As Stream = File.Create("Output.xlsx")
            workbook.SaveAs(stream)
 
        End Using
 
    End Sub
End Module

 

Conclusion

I hope you enjoyed learning about how to get the column index from column name using XlsIO.

You can refer to our  WinForms XlsIO feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms XlsIO documentation to understand how to create and manipulate data.

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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied