Microsoft Excel is an application in which a user can input data into a table, whose columns are labelled "A", "B", "C", "D", ... up to "Z", where it continues as "AA", "AB", "AC"... Knowing that the rightmost column of this table is labelled "XFD", how many columns does Microsoft Excel have?
Note : There are 26 letters in the alphabet.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Notice that the problem is just base 26 to decimal conversion in disguise. Suppose XFD is a number in base 26, with X, F, D representing 24, 6, 4 respectively. We then have [24x(26^2)] + [6x26] + 4 = 16384, as desired.