There is some code which copy values, open Notepad, paste there values and coped valies again paste it in Excel. Problem that it paste and the is still as Unicode Text, I need unfomatted text. Is someone had similar problem or know how to paste it as unformatted text? Manually there is option in PasteSpecial section to choose Text.
planas.Sheets("Buy").Range("D3:I26").Copy '1B
'// Start Notepad with focus
Shell "notepad.exe", vbNormalFocus
'// Send the standard CTRL+V. Pastes to the
SendKeys "^V"
'// Send the standard CTRL+A. Mark all values
SendKeys ("^a")
'// Copy from Notepad
SendKeys ("^c")
'// Paste to Excel
sablonas.Sheets(1).Range("B10").PasteSpecial xlPasteValues