|
|||||||
| Shooting The Shit Anything goes, seriously. Come meet and network with your peers, it's a fun way to take a break out of your busy day of posting at other boring forums. |
|
Welcome to the WickedFire - Affiliate Marketing Forum - Internet Marketing Webmaster SEO Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Senior Member
|
Hi guys,
Couldn't think of anywhere else to put this.. So I have a list of 1000 words - I want to add a blank line between each word for example my list looks like this _______ hello hi what pizza _____________ I wanna make it ________ hello hi what pizza ________________ I would go crazy if I tried to do it manually, and I have more lists that I need this done with as well.. So is there any tool, script, excel or word command or whatever which can get this done on the fly? Any help would be really appreciated.. |
|
|
|
|
|
#2 (permalink) |
|
Senior Member
|
This would be quite easy to whip up w/ some PHP. Post the job on Fiverr.
__________________
"I have always believed that writing advertisements is the second most profitable form of writing," said BBDO Chairman Philip Dusenberry. "The first, of course, is ransom notes." |
|
|
|
|
|
#3 (permalink) |
|
Quality Content Writer
|
This will take about 5 minutes including download and installation if you don't have Notepad++ already.
Step 1: Get Notepad++. Step 2: Load one of your text files. Step 3: Go to Macro -> Start Recording. Step 4: Start on the far left of the first line and press down then enter. Step 5: Go to Macro -> Stop Recording. Step 6: Go to Macro -> Save Current Recorded Macro. Name it line spacer or something. Step 7: To use the macro, start at the beginning of one your text files. Then go to Macro -> Run a Macro Multiple Times, choose your macro name from the pull down list, and then choose the Run until the end of file radio button. You'll only need to do Step 7 for future files.
__________________
High-Quality Content Writer $3 per 100 words, discount rates available http://www.potentialeight.com |
|
|
|
|
|
#7 (permalink) |
|
Moist
|
Paste all the data into Column "A" in Excel.
Create this Macro: Code:
Sub InsertRowAfterEveryRowWithEntryInColA()
'Ist declare your variable "Cell"
Dim Cell As Range
'Set it's start value - this determines what column is checked
Set Cell = Range("A2")
'set a loop endpoint = when it reaches a blank cell
Do Until Cell = ""
'Insert a row
Cell.EntireRow.Insert
'Go to next row
Set Cell = Cell.Offset(1, 0)
'Repeat loop (goes back to the "Do" line
Loop
'Finishes when it reaches 1st blank cell in column A
End Sub
__________________
|
|
|
|
|
|
#9 (permalink) |
|
Senior Member
|
You're so right... Can't believe Notebook slipped my mind LOL PHP!
__________________
"I have always believed that writing advertisements is the second most profitable form of writing," said BBDO Chairman Philip Dusenberry. "The first, of course, is ransom notes." |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|