Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi, as the forum search is giving me a 404 all the time,I gotta ask: Is there a function that will tell me if a cell does have a value,text. All I can find are fuctions that consider formulas as value too. Thanks. -- Dark_Templar ------------------------------------------------------------------------ Dark_Templar's Profile: http://www.excelforum.com/member.php...o&userid=33279 View this thread: http://www.excelforum.com/showthread...hreadid=541235 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry if this has been posted multiple times. Put this into a VBA module and
type =FindFormula(A1) into a cell. This will tell you whether or not it is a formula. Reading back on your post though I think I may have went the wrong dirrection. If you think something like this would be helpful for you please let me know and clarify exactly what your looking for. Function FindFormula(ByVal rng As Range) As Boolean If Left(rng.Formula, 1) = "=" Then FindFormula = True Else FindFormula = False End If End Function "Dark_Templar" wrote: Hi, as the forum search is giving me a 404 all the time,I gotta ask: Is there a function that will tell me if a cell does have a value,text. All I can find are fuctions that consider formulas as value too. Thanks. -- Dark_Templar ------------------------------------------------------------------------ Dark_Templar's Profile: http://www.excelforum.com/member.php...o&userid=33279 View this thread: http://www.excelforum.com/showthread...hreadid=541235 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you want to know which cells have formulas, use the Edit menu / GoTo
/ Special / formulas. Note the other things you can find with this. ed |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or, if you want to know which have values, but not formulas, Edit menu
/ GoTo / Special / check Constants, then check Numbers. ed |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Wrote: Or, if you want to know which have values, but not formulas, Edit menu / GoTo / Special / check Constants, then check Numbers. ed Thats it - but I need it dznamic..as function. -- Dark_Templar ------------------------------------------------------------------------ Dark_Templar's Profile: http://www.excelforum.com/member.php...o&userid=33279 View this thread: http://www.excelforum.com/showthread...hreadid=541235 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Pardon me. What is "dznamic" ? ed
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying Formulas In Cells That Are Not Nested | Excel Discussion (Misc queries) | |||
Copying formulas to other cells. Keeping references w/o $ sign. | Excel Discussion (Misc queries) | |||
checking that cells have a value before the workbook will close | Excel Worksheet Functions | |||
Excel should let me use formulas that refer to other cells w/ form | Excel Worksheet Functions | |||
How do you show formulas in certain cells only (not the whole she. | Excel Worksheet Functions |