210994/statement-working-when-including-cells-that-have-formulas
=if(a1>10,1,0)
The problem that I'm having is that cell A1 has a formula that generates a percentage. The formula above isn't giving the correct answer.
What am I doing wrong?
Try:
=IF(VALUE(A1)>10;1;0)
I hope this helps you.
on Thisworkbook, put: Private Sub Workbook_Open() Call checkPW(True) End Sub Then ...READ MORE
Use vlookup() as that is much easier ...READ MORE
Use this formula: =INDEX(FILTER(A2:D2,A2:D2<>""),1,1) INDEX returns the first value ...READ MORE
Since the 'second dimension' could be just ...READ MORE
Please see MS Excel: COUNTIF Function (WS) You should ...READ MORE
See http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010073849.aspx for limits on specs it doesn't indicate ...READ MORE
Use SUM() as an Array formula: =SUM(IFERROR((AB22:AB1100 = ...READ MORE
Try this formula in cell W4: =IF(V3=V4,INDEX(INDIRECT("I"&MATCH(W3,I:I,0)+1&":I26"),MATCH(V4,INDIRECT("R"&MATCH(W3,I:I,0)+1&":R26"),0)),INDEX($I$2:$I$26,MATCH(V4,$R$2:$R$26,0))) The calculation ...READ MORE
Try this: =IFERROR(EXP(LN(REALLY_LONG_FORMULA – threshold)) + threshold, 0) The ...READ MORE
If J17's value is a true or ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.