how do I make code more readable ?
hi Experts
I have a really long line of code:
sheets("Personal Format Presentation").Range("B21").value = Range("A21").value & " " & Range("C21").value & Range("D21").value
How Can I make this easier to read ?
Hope that makes sense !
Sandra
»
- Add new comment
- 306 reads

hi Sandra.. there are a few
hi Sandra.. there are a few things you can do.. these are prob the best:
1. Use line continuation:
2. Split up into more lines:
Nick