Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Paid Support to write Macro?

I need help writing a fairly simple macro. Is there some type of support I
could pay for to help write it? Basically I have a list of transactions
whose format needs to be altered and the steps to fix it are very repetitive.
I need to merge cells then delete a row and then repeat the process about
1000 times. I tried to record a macro myself but it doesn't quite work. Any
suggestions where I can get help?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Paid Support to write Macro?

If it is fairly simple as you say, if you post a description of what you
want, you could probably get help here.

Sub AlterData()
Dim lastrow as Long, i as lOng
lastrow = cells(rows.count,1).End(xlup).row
for i = lastrow to 1 step - 1
rows(i+1).Insert
application.DisplayAlerts = False
cells(i,1).Resize(1,2).Merge
application.DisplayAlerts = True
Next
End sub

As an example.
This inserts a blank row below each existing row and merges the cells in
columns A and B of each original row.


--
Regards,
Tom Ogilvy


"MattPatsFan" wrote:

I need help writing a fairly simple macro. Is there some type of support I
could pay for to help write it? Basically I have a list of transactions
whose format needs to be altered and the steps to fix it are very repetitive.
I need to merge cells then delete a row and then repeat the process about
1000 times. I tried to record a macro myself but it doesn't quite work. Any
suggestions where I can get help?


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 145
Default Paid Support to write Macro?

Try getacoder.com or getafreelancer.com

"MattPatsFan" wrote in message
...
I need help writing a fairly simple macro. Is there some type of support

I
could pay for to help write it? Basically I have a list of transactions
whose format needs to be altered and the steps to fix it are very

repetitive.
I need to merge cells then delete a row and then repeat the process about
1000 times. I tried to record a macro myself but it doesn't quite work.

Any
suggestions where I can get help?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro to Support a task in excel VM Excel Discussion (Misc queries) 2 March 26th 09 05:33 PM
Does not support automation or does not support expected interface Maverick Excel Programming 0 September 21st 06 09:31 AM
Excel bugs? Experience with paid ($245) phone support from MS? wolfmeister67 Excel Programming 15 February 23rd 06 02:15 PM
is it possible to execute write to the fields in another .xsl form a macro in another .xsl? e.g. some way to load another .xsl into an .xsl macro and write to its data? Daniel Excel Worksheet Functions 1 June 23rd 05 11:38 PM
Need help to write macro please Bob[_57_] Excel Programming 6 May 28th 04 01:21 AM


All times are GMT +1. The time now is 01:41 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"