Remove double quotation from write statement in vba

Write is a special statement designed to generate machine-readable files that are later consumed with Input.

Use Print to avoid any fiddling with data.

Print #2, "Start postion = "; StarRange
Print #2, "End position = "; EndRange

Leave a Comment