Is there a way to add an image to a header footer using Axlsx?
header_footer = {:different_first => false, odd_header:'&C&14 &B&UHeader Text', odd_footer:'&L&11&BPage &P &C&11Footer Text &R&11&ILast updated:&D'}
@wb.add_worksheet(name: "Sheet1",:header_footer => header_footer) do |sheet|
#add rows, etc.
end
I'd like to add an image to the Right section of the header and all of the examples are to place the image in a particular cell.
Any ideas on how I can accomplish this?