Thread: Spread Macro
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Spread Macro

If you just want to enter a value and copy it across then:

1. Select A1 thru L1
2. type a number
3. Instead of touching the ENTER key, touch CNTRL-ENTER

If you want to distribute values into 12 equal parts, then you would need a
macro:

Sub fillum()
v = Range("A1").Value / 12
Range("A1:L1").Value = v
End Sub



--
Gary''s Student - gsnu200745


"Lefty" wrote:

I am trying to Do a spread Macro for budgeting. I want to specify a column
when a number is entered and I hit the Macro button that number would be
spread in the same row in 12 (months) columns