Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Thread: Daily Macro for 31 days in microsoft.public.excel.newusers

Started 1 month, 2 weeks ago by paintbrush
I am having problems with the Macro below. The 6th line is off somehow or 6,7,8,9, being off. Would appreciate any help on the line or any other problem you see with the Macro. Sub BuildingSalvage() 'Assuming row Corresponds to date: 'Sub MyMacro() 'Dim x As Integer 'Determine what day it is x = ...
Site: Discussions in microsoft.public.excel.newusers  Discussions in microsoft.public.excel.newusers - site profile
Forum: microsoft.public.excel.newusers  microsoft.public.excel.newusers - forum profile
Total authors: 3 authors
Total thread posts: 3 posts
Thread activity: no new posts during last week
Domain info for: microsoft.com

Other posts in this thread:

Per Jessen replied 1 month, 2 weeks ago
Hi Range("K") is not a valid cell reference. Not sure if you want to paste in row x, but maybe this: Range("K" & x).select Or better: Range("F32").Copy Range("K" & x).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks_:=False, Transpose:=False Hopes this helps. .......

Don Guillett replied 1 month, 2 weeks ago
instead of > Range("f32").Select > Selection.Copy > Range("K").Select > Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, > SkipBlanks_:=False, Transpose:=False try Cells(x, "K").value = Cells(32, "F").Value -- Don Guillett Microsoft MVP Excel SalesAid Software dguillett1@austin.rr.com...

 

Top contributing authors

Name
Posts
paintbrush
1
user's latest post:
Daily Macro for 31 days in...
Published (2009-11-12 16:29:00)
  I am having problems with the Macro below. The 6th line is off somehow or 6,7,8,9, being off. Would appreciate any help on the line or any other problem you see with the Macro. Sub BuildingSalvage() 'Assuming row Corresponds to date: 'Sub MyMacro() 'Dim x As Integer 'Determine what day it is x = Format(Date, "d") Cells(x, "G").Formula = Date Cells(x,...
Per Jessen
1
user's latest post:
Daily Macro for 31 days in...
Published (2009-11-12 17:56:00)
  Hi Range("K") is not a valid cell reference. Not sure if you want to paste in row x, but maybe this: Range("K" & x).select Or better: Range("F32").Copy Range("K" & x).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks_:=False, Transpose:=False Hopes this helps. .... Per On 13 Nov., 01:30, paintbrush <Eastern Ks.com>...
Don Guillett
1
user's latest post:
Daily Macro for 31 days in...
Published (2009-11-13 07:16:00)
  instead of > Range("f32").Select > Selection.Copy > Range("K").Select > Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, > SkipBlanks_:=False, Transpose:=False try Cells(x, "K").value = Cells(32, "F").Value -- Don Guillett Microsoft MVP Excel SalesAid Software dguillett1@austin.rr.com...

Related threads on "Discussions in microsoft.public.excel.newusers":

Related threads on other sites:

Thread profile page for "Daily Macro for 31 days in microsoft.public.excel.newusers" on http://www.microsoft.com/communities/newsgroups.... This report page is a snippet summary view from a single thread "Daily Macro for 31 days in microsoft.public.excel.newusers", located on the Message Board at http://www.microsoft.com/communities/newsgroups.... This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity