Excel Holiday Song Array Formula?

marc j

Board Regular
Joined
Aug 8, 2012
Messages
112
Happy Holidays,

Can anybody help? (one cell at a time)

A1=Excel rows, excel rows,
B1=Excel to the max
C1=Oh, what function it is to right
D1=In a one array offset sumproduct
E1=




Enjoy, Have fun
Marc
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
What the ?????
 
My suggestion goes goes like this:

Code:
Sub Xmas_Song()
    Dim Holiday As Long
    Dim IsOver As Single
    
    On Error GoTo HappyNewYear
     
    Do Until Holiday = IsOver
        Range("A1").Value = "Excel rows, excel rows,"
        Range("B1").Value = "Excel to the max"
        Range("C1").Value = "Oh, what function it is to right"
        Range("D1").Value = "In a one array offset sumproduct"
        Range("E1").Value = ""
        
        IsOver = IsOver + 1
        If IsOver = 7 Then GoTo HappyNewYear
    Loop
 
     
HappyNewYear:

End Sub

Vidar
 
Last edited:
Don't forget to use speak cells and let Excel sing it to you. ;)
 
That's fine for the chorus, but aren't we forgetting

Dashing down the rows
In a one-tab open file
Over charts we go
Scrolling all the way

etc etc . . .
 

Forum statistics

Threads
1,222,621
Messages
6,167,087
Members
452,094
Latest member
Roberto Saveru

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