require 'win32ole' excel = WIN32OLE.new('excel.application') excel.visible = true excel.workbooks.open(file_path) # absolute file path excel.range('A1').value = 'Hello, world.' # get/set value
You need to create an account or log in to post comments to this site.