Re: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-30 Thread De Premor
cel-macros@googlegroups.com] *On Behalf Of *Dante Julian *Sent:* Friday, August 30, 2013 1:03 PM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ Re: Copy data to next empty row Dear Ravi, Did figure it out. In your code, I replaced the line "Msgbox storeval" with "c.Sele

RE: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-30 Thread Ravi Kumar
Yes, that's perfect Warm Regards, Ravi Kumar. From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Dante Julian Sent: Friday, August 30, 2013 1:03 PM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Re: Copy data to next empt

Re: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-30 Thread Dante Julian
: RE: $$Excel-Macros$$ Re: Copy data to next empty row Hi,   Ok, please see the below code, if still it’s not fine then let me know   Sub findlastrow() Dim rng As Range   Set rng = Range("A37:A115 ")   For Each c In rng If c.Value = "" Then     storeval = c.Row     MsgBox store

Re: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-30 Thread Dante Julian
, August 30, 2013 2:57 PM Subject: RE: $$Excel-Macros$$ Re: Copy data to next empty row Hi,   Ok, please see the below code, if still it’s not fine then let me know   Sub findlastrow() Dim rng As Range   Set rng = Range("A37:A115 ")   For Each c In rng If c.Value = "" Then

Re: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-30 Thread Bé Trần Văn
To determine the name of each workbook, you must have the workbook name column before combined. 2013/8/30 DanJ > Dear Experts, > > Thank you for your quick replies. > > Sorry, if my question was not clear. > > What I wanted to find is the last row within the range A37:A115 of the > first workb

RE: $$Excel-Macros$$ Re: Copy data to next empty row

2013-08-29 Thread Ravi Kumar
Hi, Ok, please see the below code, if still it's not fine then let me know Sub findlastrow() Dim rng As Range Set rng = Range("A37:A115 ") For Each c In rng If c.Value = "" Then storeval = c.Row MsgBox storeval Exit Sub End If Next End Sub Warm Re