वाह, मैं खुद यह सवाल पूछने जा रहा था लेकिन यह पहले से ही पूछा गया था। सभी एक्सेल क्लिपबोर्ड आउटपुट tabडिफ़ॉल्ट रूप से सीमांकित है। यह "वास्तविक" सादे पाठ आउटपुट के लिए कष्टप्रद है जब आपके पास एक निश्चित चौड़ाई का फ़ॉन्ट होता है, लेकिन जरूरी नहीं कि टैब सीमांकक समर्थन।
फिर भी, मैंने एक छोटा एक्सेल मैक्रो पाया और संशोधित किया जो वर्तमान में चयनित क्षेत्र को एक साधारण निश्चित-चौड़ाई वाले कॉलम ASCII टेबल के रूप में कॉपी करेगा - जैसे:
187712 201 37 0.18
2525 580 149 0.25
136829 137 43 0.31
यहाँ मैक्रो कोड है। यदि आप Excel 2007 या उसके बाद का उपयोग कर रहे हैं , तो इसका उपयोग करने के लिए, सुनिश्चित करें कि आप Excel विकल्प में डेवलपर टैब को सक्षम करें ।
Sub CopySelectionToClipboardAsText()
' requires a reference to "Windows Forms 2.0 Object Library"
' add it via Tools / References; if it does not appear in the list
' manually add it as the path C:\Windows\System32\FM20.dll
Dim r As Long, c As Long
Dim selectedrows As Integer, selectedcols As Integer
Dim arr
arr = ActiveSheet.UsedRange
selectedrows = UBound(arr, 1)
selectedcols = UBound(arr, 2)
Dim temp As Integer
Dim cellsize As Integer
cellsize = 0
For c = 1 To selectedcols
temp = Len(CStr(Cells(1, c)))
If temp > cellsize Then
cellsize = temp
End If
Next c
cellsize = cellsize + 1
Dim line As String
Dim output As String
For r = 1 To selectedrows
line = Space(selectedcols * cellsize)
For c = 1 To selectedcols
Mid(line, c * cellsize - cellsize + 1, cellsize) = Cells(r, c)
Next c
output = output + line + Chr(13) + Chr(10)
Next r
Dim MyData As MSForms.DataObject
Set MyData = New DataObject
MyData.SetText output
MyData.PutInClipboard
MsgBox "The current selection was formatted and copied to the clipboard"
End Sub