简体   繁体   中英

Run time error in spreadsheet

thank you for your time. I've put stars on the error line if this helps.

I'm lost with an error and I can't find the reason. Can I get some help, please? The macros is not running for only one period and I didn't find any different data in the database compare to the previous period

That's the debug menu:

Get values and convert to string for text box:

a = Format(.Cells(rowNum, dateCol), "dd mmm")
a = a + ", " + Str(.Cells(rowNum, actualAssetCol))

Get values and convert to string for text box:

a = Format(.Cells(rowNum, dateCol), "dd mmm")
a = a + ", " + Str(.Cells(rowNum, actualAssetCol))`

The string concatenation operator in is & and not + . Thus, use it like this:

a = a & ", " & Str(.Cells(rowNum, actualAssetCol))`

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM