Hi,
Can anyone help me with this?
I want to extract the hyperlinks from Column B and write it in Column C.
Input:
Output:
Any inputs?
Hi,
Can anyone help me with this?
I want to extract the hyperlinks from Column B and write it in Column C.
Input:
Output:
Any inputs?
Try using reqd range with raw values or read range workbook without preserve formatting
It would get urls and then filter datatable to have only yrl column and can write back to excel
Cheers
I want LINQ to do it to increase the processing speed
Both give you same speed…we are not doing any loops here…we are reading the data, then filter and write back only
in place of filter you would use linq again which has no improvement mostly
cheers
Hi @Ray_Sha1 ,
Were you able to read the URLs or when tried to extract using the Read Range
activities of both Classic/Modern Excel related activities was the URL value extracted in Datatable?
If you are still looking for extracting URL’s or data from the Hyperlink formula, Maybe the below could help :
=MID(FORMULATEXT(A2),SEARCH("(""",FORMULATEXT(A2))+2,SEARCH(""",",FORMULATEXT(A2))-SEARCH("(""",FORMULATEXT(A2))-2)
The above could be achieved by using a Write Cell
Activity with the above formula and then use Auto Fill Range
or Fill Range
activities to update the remaining cell values.
Using the Means of Read Range
with Preserve Formatting or no Preserve Formatting did not seem to work when I performed a test, hence this work around.
@Anil_G , Do let us know if you have any other methods in mind
Let us know if the above suggested method does not work for your scenario.
Please try as @supermanPunch mentioned
My bad that I just checked and I dont see url being extracted
And you can try this formula as well =MID(FORMULATEXT(A2),13,FIND("""",FORMULATEXT(A2),13)-13)
cheers
Thanks for the input.
If we want to store store it in the datatable instead of writing it back to the sheet?
I believe here, the First Step would be to use the Formula mentioned above and update the Column using the Excel activities as mentioned.
Then we can use Read Range
activity and Read the updated data as Datatable which has the hyperlinks url available in the new column, so that we can access those values from the Datatable.
I’m not able to extract. I’m getting empty values.
Is there any other way?
I get N/A values
The ones that you guys have provided.
I’m getting NA values in the excel as well
I agree with that…can you first show what is the hyperlink text you have and also the formula might change depending on the cell numbers so wanted to verify
Cheers
Was a manual check done at first and tested ? We will not be able to help more or faster if the implementation done is not shown ?
Were you able to use Write Cell
with the Formula provided and did it give N/A values ?
For your case, The Cell reference maybe B2 instead of A2