#AHK : Parse data from excel (ignore empty rows and cells) # Buffer := clipboard Loop, parse, Buffer,`n, `r { if not A_LoopField continue Loop, parse, A_LoopField, `t { if not A_LoopField continue if (A_Index <> 1) Send {tab} Clipboard = %A_LoopField% Send ^v } Send `n } Clipboard := Buffer