I have this code and I want it to do as below but I also want it to stop if the cell is blank. CValue has already been predetermined

Is there a way to include both do untils in one?

so stop looping if cell is blank or if the cell is less than or equal to CValue

Any ideas please?


[VBA]ActiveCell.Offset(-1, 0).Select
Do Until Selection <= CValue
ActiveCell.Offset(-1, 0).Select
Loop[/VBA]