Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I need "Do While" Function in Excel,but is not in. How I can replace it?
|
#2
![]() |
|||
|
|||
![]()
The most likely reason you haven't received an answer is probably because
nobody understand what you mean? Could you post some more information of what it is you want to do Regards, Peo Sjoblom "Luka" wrote: I need "Do While" Function in Excel,but is not in. How I can replace it? |
#3
![]() |
|||
|
|||
![]()
Do you mean in a worksheet function? I don't think so, you need a UDF.
-- HTH RP (remove nothere from the email address if mailing direct) "Luka" wrote in message ... I need "Do While" Function in Excel,but is not in. How I can replace it? |
#4
![]() |
|||
|
|||
![]()
Luka
Couple of examples... Sub ActivateNextBlankDown() ActiveCell.Offset(1, 0).Select Do While Not IsEmpty(ActiveCell) ActiveCell.Offset(1, 0).Select Loop End Sub Sub Interval_Entry() i = 1 todo = InputBox("Enter a number") Do While todo * i < 910 Cells(todo * i, 1) = 88 i = i + 1 Loop End Sub Gord Dibben Excel MVP On Mon, 27 Dec 2004 11:59:01 -0800, "Luka" wrote: I need "Do While" Function in Excel,but is not in. How I can replace it? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to list unique values | Excel Worksheet Functions | |||
Find a Function to use accross different worksheets | Excel Worksheet Functions | |||
Replace function not working properly in Excel 2000 SP3 | Excel Worksheet Functions | |||
Counting Function Dilemma | Excel Worksheet Functions | |||
SUMIF(AND) FUNCTION | Excel Worksheet Functions |