View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Khoshravan Khoshravan is offline
external usenet poster
 
Posts: 211
Default Macro, how to set a cell value to zero

Thanks for your comment.
Isn't it possible to eliminate the first part:
Worksheets("Sheet1").

--
R. Khoshravan
Please click "Yes" if it is helpful.


"Chris Bode via OfficeKB.com" wrote:

You can just use the
Worksheets("Sheet1").Cells(row,col).Value=0 statement to set the cell value
to zero.


#
Sub RoundToZero1()
For Counter = 1 To 12

Worksheets("Sheet1").Cells(Counter, 3).Value=0

Set curCell = Worksheets("Sheet1").Cells(Counter, 3)
If Abs(curCell.Value) < 0.5 Then Cells(Counter, 4) = "These numbers
are lass than 0.5"
Next Counter
End Sub
#


Hope this works

Have a nice time

Chris
------
Convert your Excel spreadsheet into an online calculator.
http://www.spreadsheetconverter.com

--
Message posted via http://www.officekb.com