View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Melody Melody is offline
external usenet poster
 
Posts: 51
Default Question as to why this will not run?


-- New to using VB to write macros€¦.trying to get largest number in a column
and display that number within a message box€¦.program will compile but Im
getting a run time error.
Had programming experience in the past but its been quite some time!!!


Sub nextnum()
'
' nextnum Macro
' allows user to see next available number to assign to project
'
' Keyboard Shortcut: Ctrl+n
'
Range("C250").Select
ActiveCell.FormulaR1C1 = "=MAX(R[-106]C:R[-1]C)"
MsgBox "Next available Non Residential number is " & [ActiveCell.FormulaR1C1]
End Sub

mms