Fastest function to generate Excel column letters in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T19:50:53Zhttp://stackoverflow.com/feeds/question/837155http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c6Fastest function to generate Excel column letters in C# Old Man2009-05-07T21:35:05Z2009-08-06T06:56:49Z
<p>What is the fastest c# function that takes and int and returns a string containing a letter or letters for use in an Excel function? For example, 1 returns "A", 26 returns "Z", 27 returns "AA", etc.</p>
<p>This is called tens of thousands of times and is taking 25% of the time needed to generate a large spreadsheet with many formulas. </p>
<pre><code>public string Letter(int intCol) {
int intFirstLetter = ((intCol) / 676) + 64;
int intSecondLetter = ((intCol % 676) / 26) + 64;
int intThirdLetter = (intCol % 26) + 65;
char FirstLetter = (intFirstLetter > 64) ? (char)intFirstLetter : ' ';
char SecondLetter = (intSecondLetter > 64) ? (char)intSecondLetter : ' ';
char ThirdLetter = (char)intThirdLetter;
return string.Concat(FirstLetter, SecondLetter, ThirdLetter).Trim();
}
</code></pre>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837175#8371750Answer by Neil N for Fastest function to generate Excel column letters in C# Neil N2009-05-07T21:40:48Z2009-05-07T21:40:48Z<p>can you post your current function? Something as simple as this should not be 25% of your processing.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837185#8371853Answer by JDunkerley for Fastest function to generate Excel column letters in C# JDunkerley2009-05-07T21:42:05Z2009-05-07T21:42:05Z<p>You could pre-generate all the values into an array of strings. This would take very little memory and could be calculated on the first call.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837189#8371891Answer by Doug for Fastest function to generate Excel column letters in C# Doug2009-05-07T21:43:08Z2009-05-07T21:53:13Z<p>The absolute FASTEST, would be capitalizing that the Excel spreadsheet only a fixed number of columns, so you would do a lookup table. Declare a constant string array of 256 entries, and prepopulate it with the strings from "A" to "IV". Then you simply do a straight index lookup.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837192#83719210Answer by womp for Fastest function to generate Excel column letters in C# womp2009-05-07T21:43:44Z2009-05-07T21:43:44Z<p>I can tell you that the fastest function will not be the prettiest function. Here it is:</p>
<pre><code>private string[] map = new string[]
{
"A", "B", "C", "D", "E" .............
};
public string getColumn(int number)
{
return map[number];
}
</code></pre>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837209#8372090Answer by Noldorin for Fastest function to generate Excel column letters in C# Noldorin2009-05-07T21:47:42Z2009-05-07T22:17:09Z<p>Try this function.</p>
<pre><code>// Returns name of column for specified 0-based index.
public static string GetColumnName(int index)
{
var name = new char[3]; // Assumes 3-letter column name max.
int rem = index;
int div = 17576; // 26 ^ 3
for (int i = 2; i >= 0; i++)
{
name[i] = alphabet[rem / div];
rem %= div;
div /= 26;
}
if (index >= 676)
return new string(name, 3);
else if (index >= 26)
return new string(name, 2);
else
return new string(name, 1);
}
</code></pre>
<p>Now it shouldn't take up <em>that</em> much memory to pre-generate each column name for every index and store them in a single huge array, so you shouldn't need to look up the name for any column twice.</p>
<p>If I can think of any further optimisations, I'll add them later, but I believe this function should be pretty quick, and I doubt you even need this sort of speed if you do the pre-generation.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837212#8372124Answer by esac for Fastest function to generate Excel column letters in C# esac2009-05-07T21:48:38Z2009-05-07T21:55:13Z<pre><code> public static string ExcelColumnName(int count)
{
return new string((char)('A'+(((count-1)%26))), ((count-1) / 26) + 1);
}
</code></pre>
<p>Or if you would like to cache it for further lookups to make it faster :)</p>
<pre><code>public class Test
{
private Dictionary<int, string> m_Cache = new Dictionary<int, string>();
public string ExcelColumnName(int count)
{
if (m_Cache.ContainsKey(count) == false)
{
m_Cache.Add(count, new string((char)('A' + (((count - 1) % 26))), ((count - 1) / 26) + 1));
}
return m_Cache[count];
}
public static void Main(string[] args)
{
Test t = new Test();
Console.WriteLine(t.ExcelColumnName(1));
Console.WriteLine(t.ExcelColumnName(26));
Console.WriteLine(t.ExcelColumnName(27));
Console.WriteLine(t.ExcelColumnName(1));
Console.WriteLine(t.ExcelColumnName(26));
Console.WriteLine(t.ExcelColumnName(27));
}
</code></pre>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837218#8372181Answer by shahkalpesh for Fastest function to generate Excel column letters in C# shahkalpesh2009-05-07T21:49:45Z2009-05-07T21:49:45Z<p>Once your function has run, let it cache the results into a dictionary. So that, it won't have to do the calculation again.</p>
<p>e.g. Convert(27) will check if 27 is mapped/stored in dictionary. If not, do the calculation and store "AA" against 27 in the dictionary.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/837673#8376736Answer by barrowc for Fastest function to generate Excel column letters in C# barrowc2009-05-08T00:19:00Z2009-05-08T00:19:00Z<p>Don't convert it at all. Excel can work in R1C1 notation just as well as in A1 notation.</p>
<p>So (apologies for using VBA rather than C#):</p>
<pre><code>Application.Worksheets("Sheet1").Range("B1").Font.Bold = True
</code></pre>
<p>can just as easily be written as:</p>
<pre><code>Application.Worksheets("Sheet1").Cells(1, 2).Font.Bold = True
</code></pre>
<p>The <code>Range</code> property takes A1 notation whereas the <code>Cells</code> property takes (row number, column number).</p>
<p>To select multiple cells: <code>Range(Cells(1, 1), Cells(4, 6))</code> (NB would need some kind of object qualifier if not using the active worksheet) rather than <code>Range("A1:F4")</code></p>
<p>The <code>Columns</code> property can take either a letter (e.g. F) or a number (e.g. 6)</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/838373#8383731Answer by Neil N for Fastest function to generate Excel column letters in C# Neil N2009-05-08T05:30:55Z2009-05-08T05:30:55Z<p>Your first problem is that you are declaring 6 variables in the method. If a methd is going to be called thousands of times, just moving those to class scope instead of function scope will probably cut your processing time by more than half right off the bat.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/839649#8396490Answer by Joel Coehoorn for Fastest function to generate Excel column letters in C# Joel Coehoorn2009-05-08T12:51:08Z2009-05-08T12:51:08Z<p>See this question:<br />
<a href="http://stackoverflow.com/questions/297213/translate-an-index-into-an-excel-column-name">http://stackoverflow.com/questions/297213/translate-an-index-into-an-excel-column-name</a></p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/1078109#10781090Answer by foson for Fastest function to generate Excel column letters in C# foson2009-07-03T07:06:31Z2009-07-03T07:52:40Z<p>Caching really does cut the runtime of 10,000,000 random calls to 1/3 its value though:</p>
<pre><code> static Dictionary<int, string> LetterDict = new Dictionary<int, string>(676);
public static string LetterWithCaching(int index)
{
int intCol = index - 1;
if (LetterDict.ContainsKey(intCol)) return LetterDict[intCol];
int intFirstLetter = ((intCol) / 676) + 64;
int intSecondLetter = ((intCol % 676) / 26) + 64;
int intThirdLetter = (intCol % 26) + 65;
char FirstLetter = (intFirstLetter > 64) ? (char)intFirstLetter : ' ';
char SecondLetter = (intSecondLetter > 64) ? (char)intSecondLetter : ' ';
char ThirdLetter = (char)intThirdLetter;
String s = string.Concat(FirstLetter, SecondLetter, ThirdLetter).Trim();
LetterDict.Add(intCol, s);
return s;
}
</code></pre>
<p>I think caching in the worst-case (hit every value) couldn't take up more than 250kb (17576 possible values * (sizeof(int)=4 + sizeof(char)*3 + string overhead=2) </p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/1113526#11135260Answer by Bison for Fastest function to generate Excel column letters in C# Bison2009-07-11T11:22:11Z2009-07-11T11:22:11Z<p>It is recursive. Fast, and right :</p>
<pre><code>class ToolSheet
{
//Not the prettyest but surely the fastest :
static string[] ColName = new string[676];
public ToolSheet()
{
ColName[0] = "A";
for (int index = 1; index < 676; ++index) Recurse(index, index);
}
private int Recurse(int i, int index)
{
if (i < 1) return 0;
ColName[index] = ((char)(65 + i % 26)).ToString() + ColName[index];
return Recurse(i / 26, index);
}
public string GetColName(int i)
{
return ColName[i - 1];
}
}
</code></pre>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/1113677#11136770Answer by Bison for Fastest function to generate Excel column letters in C# Bison2009-07-11T13:04:37Z2009-07-11T13:04:37Z<p>sorry there was a shift. corrected.</p>
<pre><code>class ToolSheet
{
//Not the prettyest but surely the fastest :
static string[] ColName = new string[676];
public ToolSheet()
{
for (int index = 0; index < 676; ++index)
{
Recurse(index, index);
}
}
private int Recurse(int i, int index)
{
if (i < 1)
{
if (index % 26 == 0 && index > 0) ColName[index] = ColName[index - 1].Substring(0, ColName[index - 1].Length - 1) + "Z";
return 0;
}
ColName[index] = ((char)(64 + i % 26)).ToString() + ColName[index];
return Recurse(i / 26, index);
}
public string GetColName(int i)
{
return ColName[i - 1];
}
}
</code></pre>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/1237333#12373331Answer by astander for Fastest function to generate Excel column letters in C# astander2009-08-06T06:56:49Z2009-08-06T06:56:49Z<p>I currently use this, with Excel 2007</p>
<pre><code>public static string ExcelColumnFromNumber(int column)
{
string columnString = "";
decimal columnNumber = column;
while (columnNumber > 0)
{
decimal currentLetterNumber = (columnNumber - 1) % 26;
char currentLetter = (char)(currentLetterNumber + 65);
columnString = currentLetter + columnString;
columnNumber = (columnNumber - (currentLetterNumber + 1)) / 26;
}
return columnString;
}
</code></pre>
<p>and </p>
<pre><code>public static int NumberFromExcelColumn(string column)
{
int retVal = 0;
string col = column.ToUpper();
for (int iChar = col.Length - 1; iChar >= 0; iChar--)
{
char colPiece = col[iChar];
int colNum = colPiece - 64;
retVal = retVal + colNum * (int)Math.Pow(26, col.Length - (iChar + 1));
}
return retVal;
}
</code></pre>
<p>As mentioned in other posts, the results can be cached.</p>