VBA function in excel that uses loop

cjgovi

New Member
Joined
Apr 11, 2010
Messages
4
Hi

I was asked to:

Create a VBA function in excel that uses loop and that prints "Hello World" 10 times.


I have searched the internet but cannot find anything

Do you know how to do this

thank you advance!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
go to google & search for your thread title: VBA function in excel that uses loop
there are many good solutions
 
Last edited:
Upvote 0
Hi,

I don't know what you mean by "printing", but here's the following :

Code:
    For i = 1 To 10
    
        'To display it on screen
        
        MsgBox "Hello World", Title:="Do your homework yourself"
        
        'To write it in cells
        
        Cells(i, 1).Value = "Hello World"
        
    Next i
 
Upvote 0
(y) Well done. Google & the internet are a fantastic combination for learning. All the best
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,447
Members
448,966
Latest member
DannyC96

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