My 11yo VBA application worked until yesterday’s HD crash.
My backup copy for the replacement PC has
“Compile Error: Can’t find project or library”
issues with this and similar lines:
The project works if I change the line to
However, the formatting is important for display readability and reports.
I’ve been many years retired and haven’t been keeping up. Corrective code assistance is appreciated.
My backup copy for the replacement PC has
“Compile Error: Can’t find project or library”
issues with this and similar lines:
Code:
TextBox9.Value = Format(WS.Cells(iRow, 9).Value, "$ #.00")
The project works if I change the line to
Code:
TextBox9.Value = WS.Cells(iRow, 9)
However, the formatting is important for display readability and reports.
I’ve been many years retired and haven’t been keeping up. Corrective code assistance is appreciated.