Search found 1377 matches

by Dorian (MJT support)
Fri Nov 08, 2024 5:37 pm
Forum: Technical / Scripting
Topic: Check if String matches one of multiple options?
Replies: 2
Views: 33

Re: Check if String matches one of multiple options?

That's a remarkably clever way of using Separate. I just used Position. Also that's a good point re the case, which I hadn't thought of, so added it. Here's what I had : Let>SearchString=en-GB UpperCase>SearchString,SearchString LabelToVar>codes,codelist UpperCase>codelist,codelist Position>Searchst...
by Dorian (MJT support)
Wed Oct 23, 2024 4:00 pm
Forum: The Water Cooler
Topic: MS Help
Replies: 7
Views: 4153

Re: MS Help

F1 still launches context sensitive help, but we moved to online help quite some time ago.
by Dorian (MJT support)
Mon Oct 21, 2024 9:49 am
Forum: Technical / Scripting
Topic: Chromedriver disables Trusted Platform Module (TPM)
Replies: 6
Views: 733

Re: Chromedriver disables Trusted Platform Module (TPM)

Our hunch here is that ChromeDriver will not allow selenium to automate a chrome session that requires a hardware security method - for security reasons.
by Dorian (MJT support)
Tue Sep 24, 2024 9:13 pm
Forum: Technical / Scripting
Topic: Strip out specific characters from string
Replies: 9
Views: 2233

Re: Strip out specific characters from string

Not being a Regex guru, my approach would simply be to let that happen and then change it back again with another replace. I do realise that's somewhat of a bodge.

* "it's not wrong if it works" philosophy.
by Dorian (MJT support)
Mon Sep 23, 2024 6:21 pm
Forum: Technical / Scripting
Topic: Strip out specific characters from string
Replies: 9
Views: 2233

Re: Strip out specific characters from string

Many thanks. I'm always very grateful to the Regex gurus in here.
by Dorian (MJT support)
Mon Sep 23, 2024 11:08 am
Forum: Technical / Scripting
Topic: Strip out specific characters from string
Replies: 9
Views: 2233

Re: Strip out specific characters from string

I'd also be inclined use ReadFile instead of ReadLn and then Between/Regex to get anything between dc:title and />
by Dorian (MJT support)
Mon Sep 23, 2024 11:04 am
Forum: Technical / Scripting
Topic: Strip out specific characters from string
Replies: 9
Views: 2233

Re: Strip out specific characters from string

I think I'd do this in stages and take the approach of grabbing everything between content= and /> , use StringReplace to replace the &, then Regex to remove all non alphanumeric characters. But I'm no Regex expert - there may be others here who can do it all in one go. Let>TheHTML=<meta name="dc:ti...
by Dorian (MJT support)
Sun Sep 22, 2024 7:15 am
Forum: Technical / Scripting
Topic: Convert GetFileDate
Replies: 2
Views: 659

Re: Convert GetFileDate

GetFileDate : The date returned is in the format YYYYMMDD

DatePart : The date should be in a format recognised by the system.

We can use MidStr though.

Code: Select all

filedate>%Original%,fd

MidStr>%fd%,1,4,yr
MidStr>%fd%,5,2,mn
MidStr>%fd%,7,2,dt
by Dorian (MJT support)
Thu Sep 19, 2024 9:13 am
Forum: General Discussion
Topic: Macro Scheduler 15.0.25 released
Replies: 12
Views: 2469

Macro Scheduler 15.0.25 released

We have just released Macro Scheduler 15.0.25

For more details please see the Version History Page or this Blog post.
by Dorian (MJT support)
Wed Aug 21, 2024 4:26 pm
Forum: Beginners
Topic: OnEvent
Replies: 8
Views: 4798

Re: OnEvent

JRL wrote:
Wed Aug 21, 2024 1:22 pm
Dorian wrote:...and causing Excel to be "busy".
I don't have time to test but if multiple usage is the problem, might SHARING the files alleviate the issue?
I just tried it and unfortunately still had the same issue.
by Dorian (MJT support)
Wed Aug 21, 2024 10:04 am
Forum: Beginners
Topic: OnEvent
Replies: 8
Views: 4798

Re: OnEvent

Excel can perform custom data verification... nodochau might have an alternate method to accomplish his task. I'm still curious about why XLGetCell> would crash if it is used to monitor cell input. Seems like this should work. I just experimented with your example and it throws that error even if I...
by Dorian (MJT support)
Wed Aug 14, 2024 2:41 pm
Forum: Beginners
Topic: OnEvent
Replies: 8
Views: 4798

Re: OnEvent

Excel can perform custom data verification, so this operation can be achieved entirely within Excel, taking the upper and lower values and giving a popup if anything outside those parameters is entered anywhere within a given range. It's in >Data >Data Verification >Data Tools I think then it's >Set...
by Dorian (MJT support)
Mon Jul 29, 2024 12:16 pm
Forum: Beginners
Topic: Saving multiple variables in a loop
Replies: 3
Views: 4208

Re: Saving multiple variables in a loop

Have you tried this? : XLGetSelectedCell>xlBook,data_%k%,intRow,intCol It'll then be in an array. You don't need this line : Let>data=%data% %k% Then to output the data you can do something like this : ArrayCount>data,count let>OutputLoop=0 repeat>OutputLoop Let>OutputLoop=OutputLoop+1 MDL>data_%Out...
Sign up to our newsletter for free automation tips, tricks & discounts