Solved
Forum Discussion
- HaiyangwhuContributorTry double **
values = ["Cell","**"] - marinFrequent ContributorHello Kevin,
maybe you could try searching for ASCII value:
props = ["ObjectType","innerText"]
values = ["Cell", Chr(42)]
cell = table.Find(props, values, 1000)
or
var asterisk = Chr(42);
props = ["ObjectType","innerText"]
values = ["Cell", asterisk]
cell = table.Find(props, values, 1000)
Did not try myself, just a thought...
Marin - Colin_McCraeCommunity HeroIgnore ...
- kroe761ContributorThat worked! Thanks!