isn’t the bot supposed to read “tax id” and not “tax” + “id” ? why the space seems to be read ?
I wanted to extract the datas in the column named tax id in the acme’s website. what can i do for it ?
if you are doing Assignment 2, you should use a get text, in the output, use a variable of type generic, and then use an assign, and filter the text with the following line:
Out_taxid = idvendor.Substring (idvendor.IndexOf (“TaxID:”) + “TaxID:” .Length) .Split (Environment.NewLine.ToArray) (0)
Note: “idvendor” is the output of the get text activity.
what should be the condition ? knowing that i want to extract the whole column.
i tried this without the condition and it says: “message”: “Assign: Filter expression ‘[Tax ID]’ does not evaluate to a Boolean term.”,