Does VBA have an equivalent of "Text To" from Visual FoxPro
Posted
by David Stein
on Stack Overflow
See other posts from Stack Overflow
or by David Stein
Published on 2010-03-30T18:06:45Z
Indexed on
2010/03/30
18:13 UTC
Read the original article
Hit count: 1129
Visual FoxPro supports syntax such as the following:
Text To VariableName TEXTMERGE noshow
select * from.....
EndText
This assigns the value of all text between "Text To" and "EndText" to the variable. It eliminates the need for multi line statements separateed by "+ ;"
Does VBA have something similar?
© Stack Overflow or respective owner