View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jo[_2_] Jo[_2_] is offline
external usenet poster
 
Posts: 69
Default Looping till condition is satisfied?

I have this macro's code:

Dim SCell As Integer
Do Until SCell.Value = 1
If SCell.Value < 1 Then

Range("J24").Select
Calculate
End If
Loop

Where SCell has a formula like this: "if (A2<A3,1,0)" and A2 has a
random number while A3 is a fixed value. I want the macro once clicked
to keep changing A2 till SCell formula is 1. So the loop could run 5
times or 500 times.

Is there something wrong in the code above?

Thanks,
Jo