Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I need to understand how to manipulate text in formulas. My problem is that if I have an... amount biger than zero in (L14) whose formula is =+J14-I14-K14, and should I then type in text in P14, L14 will then return a zero, instea of calculating =+J14-I14-K14 due to text typed in P14. The manipulation will have to occur in L14 (my totals column for th day) eg. L14 calculates total (=+J14-I14-K14), but if I type "any text" i P14, L14 = 0 Help will be most appreciated -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
or if you specifically care about text to the EXCLUSION of numeric dat
in P14 then: =IF(ISTEXT(N13),0,J14-I14-K14) - Piku -- Message posted from http://www.ExcelForum.com |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
thanks for that, just want to ask what is the (N13) ? also interested in what the <”” mean. I was under the impression tha text needed a special formula or something -- Message posted from http://www.ExcelForum.com |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry. That should have been:
=IF(ISTEXT(N14),0,J14-I14-K14) As for [=IF(P14<””], < means 'not equal to' and "" is an empt string. So all together it means "if cell P14 is not empty." wha comes after the first comma is what happens if the "IF" statement i TRUE and what comes after the second comma is what gets executed if th statement is FALSE. SO, If P14 is not empty then this cell's value equals 0, otherwis subtract the values of cells I14 and K14 from the value of cell J14. That make sense? - Piku -- Message posted from http://www.ExcelForum.com |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text "comparison" operator for "contains" used in an "IF" Function | Excel Worksheet Functions | |||
=TEXT(L9-K9,"h:mm") How can I sum the results to a total value | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
Linking two "total" pages to create a "Complete Total" page | Excel Worksheet Functions | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |