ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro code (https://www.excelbanter.com/excel-programming/297011-macro-code.html)

rleonard

Macro code
 
Need code to use within Macro to display value of a worksheet range

Sub golfScores(

Workbook range "A2" value is = ?


with above value then can edit rest of macro to enter golf score data in that row


Thank
Bob Leonard

Don Guillett[_4_]

Macro code
 
range("a2").value=3 'or "whatever"

--
Don Guillett
SalesAid Software

"rleonard" wrote in message
...
Need code to use within Macro to display value of a worksheet range.

Sub golfScores()

Workbook range "A2" value is = ??


with above value then can edit rest of macro to enter golf score data in

that row!

Thanks
Bob Leonard




Tom Ogilvy

Macro code
 
Sub GolfScores()
Dim sAddr a sString, sVal as String
Dim vVal as Variant
Dim rng as Range
With Workbooks("Golfscores.xls").Worksheets("Scores")
sAddr = .Range("A2").Address
sVal = .Range("A2").Text
vVal = .Range("A2").Value
set rng = .Range("A2")
msgbox sAddr & " value is = " & sVal

..Cells(rng.row,"F").Value = vVal
End With
end Sub

Might give you some ideas

--
Regards,
Tom Ogilvy


"rleonard" wrote in message
...
Need code to use within Macro to display value of a worksheet range.

Sub golfScores()

Workbook range "A2" value is = ??


with above value then can edit rest of macro to enter golf score data in

that row!

Thanks
Bob Leonard





All times are GMT +1. The time now is 03:22 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com