The most pointless combination of functions

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I'd tried the formula FIND(carkeys,TRUNC(A911)) but all I got was the error message
#GOHOME?

I realise what I've done wrong though, I haven't got a 911.
 
short and pointless
=N(""&A1)

EDIT: variation
=IF(N(""&A1),N(A1),0)
 
Last edited:
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.
 
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.

Interesting that we appear to have gone round in a big circle here because to prove Oorang's point:

=ISLOGICAL(IF(A1=B1,"TRUE","FALSE"))

returns FALSE!!!
 
The most pointless combination of function?
There isn't one, and I think this thread is well on the way to demonstrating that. Sort of like below :)
Rich (BB code):
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
 
Code:
If (Range("A1") < 2) = True then
    Range("A2")= "small"
End If
If (Range("A1") < 2) = False then
    Range("A2")= "Big"
End If
 
My humble attempt, combining some of Lewiy's and Erik's ideas into something that looks complicated but does nothing.

Code:
=IF(A1=OFFSET(A1,N(""&A1),N(""&A1),ISLOGICAL(ISLOGICAL(A1)),
ISLOGICAL(ISLOGICAL(A1))),SUBSTITUTE(A1,A1,"",1),LEFT(A1,N(""&A1)))
 

Forum statistics

Threads
1,222,682
Messages
6,167,588
Members
452,121
Latest member
Hickman156

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top