Message 1 of 4
Rule only works once..?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have made this rule, that should fill out a cell in a spreadsheet with a text from IProperties.. but it seem to work only the first time. 2nd time i run it, nothing happends... not even the msgbox at the end...?!
Any ideas?
GoExcel.Open("I:\TEGNINGSNUMRE SKEMAER\Standard nummer udtagning-test.xlsx", "80000") 'Get new partnumber from Excel'Find next empty row in Column BFor RowPN = 2 To 1000 RowPN = RowPN + 1 If GoExcel.CellValue("B" & RowPN) = 1 Then 'Insert title from open Document GoExcel.CellValue("C" & RowPN) = iProperties.Value("Summary", "Title") End If Next GoExcel.Save()