View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
[email protected] cathellisuk@yahoo.co.uk is offline
external usenet poster
 
Posts: 11
Default can someone help me with these 8 lines of code


Mithu,
is the problem with

""CU_CODE," & Range("A" & i).Value)""

since you have double quotes at either end maybe Excel is taking all
the characters in the middle as a single string and therefore not
evaluating "A" & i as A1 , A2 etc

Have you tried ....

""CU_CODE," & Range("A" "" & i & "" ).Value)"" or something like
that.

Catherine