1

In the below Excel sheet I have three columns:

column1   |   column2   |  column3
----------------------------------
  A       |     small   |  blue
  B       |     med     |  yellow
  C       |     large   |  green
  D       |     large   |  green

How may I insert blank rows between each of the rows?

pnuts
  • 58,317
  • 11
  • 87
  • 139
Developer
  • 145
  • 2
  • 2
  • 11

1 Answers1

0

In addition to VBA there are various non-VBA ways to achieve what I understand you to want. Assuming column1 is in A1 of Sheet1, in another sheet in A1, copied across to C1 and then all three formulae copied down to suit:

=IF(MOD(ROW()+1,2)=0,OFFSET(Sheet1!A$1,INT(ROW()/2),),"")  

IF
MOD
OFFSET
INT
ROW

pnuts
  • 58,317
  • 11
  • 87
  • 139