L
Lucas Soler
I currently am using:
xlR.Range("D4:E1000").NumberFormat = "#,##0.0"
But I don't want to limit myself to 1000 rows. I have a counter (i.e.
Counter) that counts that rows and is an Interger. How can I use the
counter? The code below won't work. I suppose I need to convert the Counter
to text, then concatinate? Can you provide the code?
xlR.Range("D4:E" + Counter).NumberFormat = "#,##0.0"
Thanks.
xlR.Range("D4:E1000").NumberFormat = "#,##0.0"
But I don't want to limit myself to 1000 rows. I have a counter (i.e.
Counter) that counts that rows and is an Interger. How can I use the
counter? The code below won't work. I suppose I need to convert the Counter
to text, then concatinate? Can you provide the code?
xlR.Range("D4:E" + Counter).NumberFormat = "#,##0.0"
Thanks.