Hi Everyone,
I am working on excel based scenario wherein i want to return cell address of every “Stock Symbol” in column “Location”
However, in output for some of cells(Highlighted in red), its returning address - “A1” - It should have returned “B9” for “*” symbol and “B21” for “?” symbol, May i know why is this happening ?
Am i missing something ?
My workflow :–>
Yoichi
(Yoichi)
March 9, 2023, 5:16am
2
Hi,
It’s because *
and ?
are special characters in lookup. Can you try to escape it using ~
as the following?
row_symbol = row_symbol.Replace("*","~*").Replace("?","~?")
Regards,
3 Likes
Perfect, thank you, appreciate your help.
1 Like
system
(system)
Closed
March 16, 2023, 5:12pm
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.