Skip to content

Instantly share code, notes, and snippets.

@AdrianDeAnda
Created April 10, 2019 04:22
Show Gist options
  • Select an option

  • Save AdrianDeAnda/34e2d80c0e376f817452a1cae01a08bc to your computer and use it in GitHub Desktop.

Select an option

Save AdrianDeAnda/34e2d80c0e376f817452a1cae01a08bc to your computer and use it in GitHub Desktop.
Library extension to help in read/write action on spreadsheets
class Numeric
Alph = ('A'..'Z').to_a
def alph
s, q = '', self
until q.zero?
q, r = (q - 1).divmod(26)
s.prepend(Alph[r])
end
s
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment