The most pointless combination of functions

maybe "pointless" is simply a level of "having a point" that we do not yet understand
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Might be more fun to do the seemingly pointless functions. Like did you know:
Code:
Range("A1").Value = Range("A1").Value
actually does something? (Free cookie to the first person who knows the value of it :))
 
Might be more fun to do the seemingly pointless functions. Like did you know:
Code:
Range("A1").Value = Range("A1").Value
actually does something? (Free cookie to the first person who knows the value of it :))

=A1?

(circular reference mind boggling!:eeek:)

Code:
Sub Pointless()
    Dim i as integer
    Dim LR as integer: LR = Range("A" & rows.count).End(xlUp).Row
    For i = 1 to LR
        If Cells(i + LR,"A") = Cells(LR + 1,"A") Then
        Msgbox "Press OK to Continue"
    Next i
End Sub
 
Last edited:
Might be more fun to do the seemingly pointless functions. Like did you know:
Code:
Range("A1").Value = Range("A1").Value
actually does something? (Free cookie to the first person who knows the value of it :))

Assuming A1 had a formula in it, wouldn't this replace the formula with the value of the function at that moment?
--Cindy
 
Perhaps a challenge to find the most interesting results of a function or formula, where ALL of the arguments are “A1”. To kick things off, can anyone tell me which of the following is the odd one out:
=REPLACE(A1,A1,A1,A1)
=SUBSTITUTE(A1,A1,A1,A1)
=LEFT(A1,A1)
=TEXT(A1,A1)
 
I've always like multile random numbers in function

=IF(RANDBETWEEN(1,3)=1,1,IF(RANDBETWEEN(1,3)=2,2,IF(RANDBETWEEN(1,3)=3,3,0)))

Maybe more pointless would be

=IF(RANDBETWEEN(1,3)=1,1,IF(RANDBETWEEN(1,3)=2,2,IF(RANDBETWEEN(1,3)=3,3,randbetween(1,3))))
 
got another one

=left(a1,len(a1))
 
On the random theme
Code:
=if(rand()=rand(),rand(),rand())
Strictly speaking, you could argue this does actually does SOMETHING, but nothing very useful.

Lewiy - post #36
I tested these - as far as I can tell there are several odd ones out.
The TEXT formula is the only one that doesn't return an error if A1 contains text.

If A1 contains 0, TEXT returns 0 and LEFT returns blank, the others return errors.
If A1 contains a 2 digit number, or a decimal such as 1.1, thing start to get interesting. Also the results for A1=10 are different from A1=11.
 
Maybe more pointless would be

=IF(RANDBETWEEN(1,3)=1,1,IF(RANDBETWEEN(1,3)=2,2,IF(RANDBETWEEN(1,3)=3,3,randbetween(1,3))))

I don't think this qualifies as pointless. It produces a specific distribution, i.e. more 1s than 2s and more 2s than 3s [in fact, if you have that formula in 81 cells then, on average, you'll get 35 1s, 26 2s and 20 3s] so if you require that distribution the point of the formula would be to produce it!

Time for my tablet, I think.................:nya:
 

Forum statistics

Threads
1,222,682
Messages
6,167,604
Members
452,122
Latest member
Warwick89

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