row didn't exist... should have noticed that myself
thanks for the help!
Search found 5 matches
- Thu Apr 11, 2019 2:40 pm
- Forum: Technical / Scripting
- Topic: Get an Excel File Name from another Excel File
- Replies: 3
- Views: 2844
- Thu Apr 04, 2019 2:40 pm
- Forum: Technical / Scripting
- Topic: Get an Excel File Name from another Excel File
- Replies: 3
- Views: 2844
Get an Excel File Name from another Excel File
Starting up a big project. My goal is to open multiple excel files, look for lines that are "past due" and enter the values as a summary into another excel sheet or word document. I want to have a master file of the names of the excel sheets. The script will use this master sheet and open up the oth...
- Mon Aug 06, 2018 3:39 pm
- Forum: Beginners
- Topic: [Solved] Repeat until not equal
- Replies: 5
- Views: 5616
Re: [Solved] Repeat until not equal
If anyone runs into something similar to this, here was my solution.
Added:
Let>stop=0
Repeat>row
if>field_2<>field_22
let>stop=row
end if
Until>row=stop
Special shout out to Grovkillen for being so helpful!
Added:
Let>stop=0
Repeat>row
if>field_2<>field_22
let>stop=row
end if
Until>row=stop
Special shout out to Grovkillen for being so helpful!
- Fri Aug 03, 2018 8:28 pm
- Forum: Beginners
- Topic: [Solved] Repeat until not equal
- Replies: 5
- Views: 5616
Re: Repeat until not equal
I'm not getting an error message but it isn't repeating Here is my entire test: Let>filename=C:\Users\USER\Desktop\ExcelTest.xlsx XLOpen>filename,1,xlH setfocus>ExcelTest let>row=1 let>check=2 repeat Let>row=row+1 Let>check=check+1 XLGetCell>xlH,Sheet1,row,2,field_2 XLGetCell>xlH,Sheet1,check,2,fiel...
- Thu Aug 02, 2018 7:53 pm
- Forum: Beginners
- Topic: [Solved] Repeat until not equal
- Replies: 5
- Views: 5616
[Solved] Repeat until not equal
I'm having issues figuring out the correct syntax I am looking to repeat a function until the row after the row I am working on is a different value. These values are coming from excel Value 1: XLGetCell>xlH,Sheet1,row,2,field_2 Value 2: XLGetCell>xlH,Sheet1,check,2,field_22 I am having issues with ...