View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
talkto_menow talkto_menow is offline
external usenet poster
 
Posts: 2
Default Please Help. Macro - changing data layout

am trying to import data to Access. Exported excel file has following
layout

Account_1

Date, Amount
Date, Amount


Account_2

Date, Amount
Date, Amount


I would like to move the Account cell value to different position, see
below


Account_1, Date, Amount
Account_1, Date, Amount


Account_2, Date, Amount
Account_2, Date, Amount


Is there any way to create VBA code that could do this for me?


Thanks