Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I am using the Ruby Spreadsheet gem to export data from a rails app to excel, is there a way to get the size of a cell (width and height) to adjust to the size of the content automatically?

share|improve this question

1 Answer

def autofit(worksheet)
    (0...worksheet.column_count).each do |col|
        @high = 1
        row = 0
        worksheet.column(col).each do |cell|
            cell==nil || cell=='' ? w = 1 : w == cell.to_s.strip.split('').count+3
            ratio = worksheet.row(row).format(col).font.size/10
            w = (w*ratio).round
            if w > @high
                @high = w
            end
            row=row+1
        end
        worksheet.column(col).width = @high
    end
    (0...worksheet.row_count).each do |row|
        @high = 1
        col = 0
        worksheet.row(row).each do |cell|
            w = worksheet.row(row).format(col).font.size+4
            if w > @high
                @high = w
            end
            col=col+1
        end
        worksheet.row(row).height = @high
    end
end

This method will loop through each column in the worksheet, then loop through each cell in the column, finding the cell with the most characters (+3 for a little extra space) and adjusting according to that cell. It then does the same thing for the rows. This value works great for font size 10, but to make sure it gets a little bigger for larger fonts, it adjust to the font size with this bit of code:

ratio = worksheet.row(row).format(col).font.size/10
w = (w*ratio).round

..It's not perfect, but gets the job done.

share|improve this answer
if you're using a wider font like Arial Black or something, you may also want to change this ratio = worksheet.row(@c).format(col).font.size/10 to ratio = worksheet.row(@c).format(col).font.size/13 or something like that – CCinkosky Mar 1 at 14:00
Very good. I had to change line 6 to w = cell==nil || cell=='' ? 1 : cell.to_s.strip.split('').count+3 to get it to work, but other than that it is perfect. – KevinM Apr 20 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.