Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If there is a '<' sign in a cell, can the cell be included in a function?
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not when the function expects a numeric value.
You could use MID(A30,2,LEN(A30)-1) in place of just A3 which has <5. For example SQRT(MID(A30,2,LEN(A30)-1)) or 2*MID(A30,2,LEN(A30)-1) which is not a function but a formula. best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Michelle" wrote in message ... If there is a '<' sign in a cell, can the cell be included in a function? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bernard Liengme wrote...
Not when the function expects a numeric value. You could use MID(A30,2,LEN(A30)-1) in place of just A3 which has <5. For example SQRT(MID(A30,2,LEN(A30)-1)) or 2*MID(A30,2,LEN(A30)-1) which is not a function but a formula. best wishes If you want short, MID(x,2,1024) would give the same result. If you want simple, SUBSTITUTE(x,"<","") would give the same result. On the other hand, if all the '<' is supposed to achieve is a visual display, and the remainder of the cell's contents would be numeric, there's also the possibility of using a custom number format like "\<General". Then such cells could be used directly in other formulas while also displaying as desired. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copying the function contained within a cell to anouther cell. | Excel Worksheet Functions | |||
indirect function to reference cell on different sheet | Excel Worksheet Functions | |||
Function to reverse the sign of a cell | Excel Worksheet Functions | |||
How do I find the contents of a cell using the "ADDRESS" function. | Excel Worksheet Functions | |||
Get current cell with VBA function | Excel Worksheet Functions |