Here are some problems that our users have asked and received explanations on
how to do a for loop in Excel VBA? its for travelling salesman problem
Solved by B. E. in 27 mins
I need to Write a VBA function that includes a loop that prints "Hello Coalition" 50 times in excel
Solved by Z. L. in 28 mins
how to write a VBA function that includes a loop that prints "Bev" 20 times, and create a button that triggers this function
Solved by F. W. in 20 mins
I am having trouble while populating Power point presentation through VBA Macro
Solved by F. A. in 11 mins
I want to display t on excel sheet row f8 Run Error on:Cells(f, 80) = t Any thoughts Sub total_wire_needed() r = 10 t = 1 c = 1 Do While r > 0 t = t + 20 r = r - 1 Cells(f, 80) = t Loop End Sub