jimrward
Well-known Member
- Joined
- Feb 24, 2003
- Messages
- 1,816
- Office Version
-
- 2016
- 2013
- 2011
- 2010
- 2007
- Platform
-
- Windows
looking for a concise VBA method to fill an array with a constant value without using a loop
in fortran you can use data statements or inline declaration for example
in fortran you can use data statements or inline declaration for example
Code:
CHARACTER*3 MYARRAY(10)/10 * "abc"/