Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to convert a formula in a cell, a reference to an other spreadsheet,
to text. I.e. Cell 'Spreadsheet1'!A6 contains formula: ='spreadsheet2'!B4 in cell 'Spreadsheet1!H6 i want the text 'spreadsheet2'!B4 to appear. How do I do that? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Function FormulaBody(r as Range)
with r.cells(1,1) if left(.formula) = "=" then FormulaBody = mid(.formula,2,len(.formula)) else FormulaBody = .formula endif end with end function Then, =FormulaBody(B3) HTH Kostis Vezerides odd wrote: I need to convert a formula in a cell, a reference to an other spreadsheet, to text. I.e. Cell 'Spreadsheet1'!A6 contains formula: ='spreadsheet2'!B4 in cell 'Spreadsheet1!H6 i want the text 'spreadsheet2'!B4 to appear. How do I do that? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert a month to a quarter ...... | New Users to Excel | |||
Text entries behaving like numbers | Excel Discussion (Misc queries) | |||
HOW DO I ENTER THIS FORMULA TO CONVERT TEXT TO DATE =DATEVALUE(, | Excel Worksheet Functions | |||
Formulas dealing with text data | Excel Worksheet Functions | |||
Is there a formula to convert numbers to written text in Excel? | Excel Worksheet Functions |