Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have something in mind like combining cell references and operands and such
from several different cells to concatenate a formula, but I end up with just text strings. Any ideas how to make them into recognizable formulas? |
#2
![]() |
|||
|
|||
![]()
By using INDIRECT you can convert strings into cell references, do a google
search for INDIRECT and text strings regards, Peo Sjoblom "bmac" wrote: I have something in mind like combining cell references and operands and such from several different cells to concatenate a formula, but I end up with just text strings. Any ideas how to make them into recognizable formulas? |
#3
![]() |
|||
|
|||
![]()
You can use VBA to convert the string formula into a formula. Select the
cell, and run this: Sub ConvertStringToFormula() ActiveCell.Formula = ActiveCell.Text End Sub That will work as long as the formula returns a string that is a valid formula (including the leading = sign). HTH, Bernie MS Excel MVP "bmac" wrote in message ... I have something in mind like combining cell references and operands and such from several different cells to concatenate a formula, but I end up with just text strings. Any ideas how to make them into recognizable formulas? |
#4
![]() |
|||
|
|||
![]()
Thank you both for your suggestions. I'll give them a shot!
"Bernie Deitrick" wrote: You can use VBA to convert the string formula into a formula. Select the cell, and run this: Sub ConvertStringToFormula() ActiveCell.Formula = ActiveCell.Text End Sub That will work as long as the formula returns a string that is a valid formula (including the leading = sign). HTH, Bernie MS Excel MVP "bmac" wrote in message ... I have something in mind like combining cell references and operands and such from several different cells to concatenate a formula, but I end up with just text strings. Any ideas how to make them into recognizable formulas? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro or Formula to remove Text from Cells | Excel Worksheet Functions | |||
concatenated text to formula | Excel Discussion (Misc queries) | |||
How to create specific formula | Excel Worksheet Functions | |||
How do i get a formula for word recognition in cells | Excel Discussion (Misc queries) | |||
How to create a formula for a range of cells | Excel Worksheet Functions |