Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default RE : upload data from excel to notepad

Hi

Can anyone tell me what are all the ways to upload data from Excel
sheet to notepad

Thanks in Advance.
Sujatha

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 78
Default upload data from excel to notepad


1.. Open the workbook you want to save for use in another program.
2.. On the File menu, click Save As.
3.. In the File name box, type a new name for the workbook.
4.. In the Save as type list, click a file format that you know you can
open in the other program. (e.g. For Notepad select any file format having
*.txt )
5.. Click Save.


Using Macro try this,


Sub Export2Notepad()
'saves active worksheet as text file in current directory
'& opens in Notepad.
Const txtfilename As String = "Book2.txt"
Dim wb As Workbook
On Error GoTo xit
If ActiveSheet.Type = xlWorksheet Then
ActiveSheet.Copy
Set wb = ActiveWorkbook
Application.DisplayAlerts = False
wb.SaveAs Filename:= _
txtfilename, FileFormat:=xlTextMSDOS, _
CreateBackup:=False
Application.DisplayAlerts = True
wb.Close False
Shell "Notepad " & CurDir & "\" & txtfilename, vbNormalFocus
Else
MsgBox "Please select Worksheet to export to Notepad.", vbCritical,
"Export to Notepad"
End If
Exit Sub
xit:
MsgBox Err.Description
End Sub

Regards,
Shailesh Shah
http://in.geocities.com/shahshaileshs/
(Excel Add-ins Page)
If You Can't Excel with Talent, Triumph with Effort.



wrote in message
ups.com...
Hi

Can anyone tell me what are all the ways to upload data from Excel
sheet to notepad

Thanks in Advance.
Sujatha



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel data upload to Oracle Brent Excel Discussion (Misc queries) 0 March 8th 07 07:01 PM
Excel data upload to Oracle Jim Thomlinson Excel Discussion (Misc queries) 0 March 8th 07 06:39 PM
Data Upload from Excel to SQL Server Duke Carey Excel Discussion (Misc queries) 3 December 19th 06 05:49 PM
Data Upload from Excel to SQL Server Duke Carey Excel Worksheet Functions 3 December 19th 06 05:49 PM
Data Upload from Excel to SQL Server Duke Carey Links and Linking in Excel 3 December 19th 06 05:49 PM


All times are GMT +1. The time now is 08:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"