Jonmo1
MrExcel MVP
- Joined
- Oct 12, 2006
- Messages
- 44,061
Hi Rob
Did you try FINDing carkeys in the TRUNC?
That would cause a circular reference, - need the keys to open the trunc....
Hi Rob
Did you try FINDing carkeys in the TRUNC?
Technically there is a difference between =IF(A1=B1,"TRUE","FALSE") and =A1=B1. The former returns a variant/string whereas the later returns a variant/boolean. It would be unusual for such a technicality to make a serious difference (or any really) but in principle it could. One example of how they could be treated differently is in excel 2003 the auto-formatting will automatically left align the string version but not the boolean.
Step1:
Whenever you think you have the most pointless combination,
somebody can think of another one that is either
a) more pointless, or
b) equally pointless.
If a Then
You now have the second most poinless combination
ElseIf b Then
You now only have an equal most pointless combination, not the most pointless
End If
GoTo Step1
If (Range("A1") < 2) = True then
Range("A2")= "small"
End If
If (Range("A1") < 2) = False then
Range("A2")= "Big"
End If
=IF(A1=OFFSET(A1,N(""&A1),N(""&A1),ISLOGICAL(ISLOGICAL(A1)),
ISLOGICAL(ISLOGICAL(A1))),SUBSTITUTE(A1,A1,"",1),LEFT(A1,N(""&A1)))