Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Luka
 
Posts: n/a
Default How i can replace function

I need "Do While" Function in Excel,but is not in. How I can replace it?
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

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   Report Post  
Bob Phillips
 
Posts: n/a
Default

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   Report Post  
Gord Dibben
 
Posts: n/a
Default

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula to list unique values JaneC Excel Worksheet Functions 4 December 10th 04 12:25 AM
Find a Function to use accross different worksheets R. Hale Excel Worksheet Functions 3 November 25th 04 07:07 AM
Replace function not working properly in Excel 2000 SP3 rgbytg Excel Worksheet Functions 5 November 11th 04 03:44 PM
Counting Function Dilemma Simon Lloyd Excel Worksheet Functions 0 November 8th 04 03:13 PM
SUMIF(AND) FUNCTION Saariko Excel Worksheet Functions 9 October 28th 04 11:52 AM


All times are GMT +1. The time now is 07:15 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"