Hi All!
Could sm.one pl. suggest how to program the following simple formula, for different values of Area,using excel macros
Area=3.14*R^2
wheras R=radius for values of R ranging from 1 to 10
Thx
Hi All!
Could sm.one pl. suggest how to program the following simple formula, for different values of Area,using excel macros
Area=3.14*R^2
wheras R=radius for values of R ranging from 1 to 10
Thx
Hi,
Sub Areas
Dim x as long, dArea as Double
For x = 1 to 10
dArea = 3.14 * x ^ 2
MsgBox dArea
Next x
End Sub
Richard Buttrey
RIP - d. 06/10/2022
If any of the responses have helped then please consider rating them by clicking the small star iconbelow the post.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks