• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Converting text into macro

Dee

Member
I have a list formulas which I need to paste as formula. The only things missing in this formula is "=" sign in the beginning of that formula. Can you guys suggest me how to add "=" sign before this text so that i can convert this set in to formula at one shot.


Thanks,

Dee
 
Dee

There are a number of utilities, some free and some not which can add characters to the start end etc of a text string, J-Walk's PUP Utility is one I use and it has a free trial

Have a look at http://spreadsheetpage.com/

If you like it, buy it, it is well worth the few dollars.
 
or you can add this to a Module

select the text and then run the macro ChangeTextToFormula


Sub ChangeTextToFormula()


For Each c In Selection


If c.Value <> "" Then

c.Formula = "=" + c.Value

End If


Next

End Sub
 
Back
Top