Home |
Search |
Today's Posts |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Looks like it works in VBA, but I've never used it in a practical application
so I don't know what limitations or pitfalls may exist. In VBA, however, TRUE = -1, which may be what prompted the OP's question: What does the "--" mean? Does that convert TRUE from -1 to 1? Sub test() x = --IsNumeric(5) MsgBox x End Sub "Biff" wrote: SUMPRODUCT seems like an easy way to handle multiple conditions with out getting into arrays. Yes, it is. Sumproduct is extemely useful and versatile. What does the "--" mean? Does that convert TRUE from -1 to 1? Yes, but it's a 2 step process. -TRUE = -1 then --1 = 1. Basically, it converts TRUE to 1 and FALSE to 0. Can "--" used in other formulas / VBA? I'm not sure about VBA but it can be used in any formula where you need/want to convert TEXT numbers/logicals into NUMERIC values. See this for a detailed explanation: http://www.xldynamic.com/source/xld.SUMPRODUCT.html Biff wrote in message oups.com... Yes, the "502" is actually a text field. SUMPRODUCT seems like an easy way to handle multiple conditions with out getting into arrays. What does the "--" mean? Does that convert TRUE from -1 to 1? Can "--" used in other formulas / VBA? Thanks! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple formatting in text cell blank it out! | Excel Discussion (Misc queries) | |||
How change dimensions of data label text box in pie chart? | Charts and Charting in Excel | |||
Capitalize Text if 2 lists are equal | New Users to Excel | |||
How do I clear blank space at the top of a word-wrapped text cell? | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) |