How to add a new row using Excel4 Macro

  • Thread starter Thread starter gimme_this_gimme_that
  • Start date Start date
G

gimme_this_gimme_that

We're trying to create a report with a tool that only understands
formula-macros and doesn't use VBA.

We're desperately wanting to add a blank line in the report.

Does anyone know of a Excel-4 Macro that adds a new row?

Thanks.
 
Macro1
=Select("R6")
=Insert(2)
=Return()

or for relative

Macro2
=Select("R[2]")
=Insert(2)
=Return()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top