Posts

Showing posts from November 30, 2018

Sidney Drell

Image
Sidney Drell From Wikipedia, the free encyclopedia Jump to navigation Jump to search Sidney Drell Born ( 1926-09-13 ) September 13, 1926 Atlantic City, New Jersey, U.S. Died December 21, 2016 (2016-12-21) (aged 90) Palo Alto, California, U.S. Nationality American Alma mater University of Illinois Known for Drell–Yan process Awards E. O. Lawrence Award (1972) Pomeranchuk Prize (1998) Enrico Fermi Award (2000) Heinz Award for Public Policy (2005) National Medal of Science (2011) Scientific career Fields Physics Institutions Stanford Linear Accelerator Center Thesis Part I Magnetic internal conversion coefficient Part II Electrostatic scattering of neutrons Part III Anomalous magnetic moments of nucleons   (1949) Doctoral advisor Sidney Dancoff Doctoral students Roscoe Giles Heinz Pagels Sidney David Drell (September 13, 1926 – December 21, 2016) was an American theo

Formatting number to have 2 digits: “Object required”

Image
up vote -1 down vote favorite Having a look in other threads on the issue, I've found how I can do it, but still i have some issue with my code (printing some values to a file. ) I'm trying to read some data from Excel sheet (it has 32 lines) and print it to a text file in some defined format. The code is for Excel Visual Basic For y = 1 to 32 Print #1, y.ToString("D2") Print #1, "some text" & y.ToString("D2") Next y I'm getting runtime error 424: object required on both of printing commands. Am I missing something? vba share | improve this question edited Nov 11 at 9:35