You can extract the URL or title, but I don’t think you can’t embed a URL within the title like you did in your post, at least not in a URL field. Both URL and titles have to be in their respective fields. There are a few ways to do it, the easiest being a script, but if you want to just use formula fields, I think the MID function can help you:
The variables are:
string: Your anchor tag
whereToStart: Right after the “=“ symbol
count: Distance between whereToStart and where the URL ends (right before the “>” symbol)
So, you will need to figure out the starting position and count (distance from start to end):
- Starting position right after the “=“: FIND("=", {Anchor Tag}) + 1
- Ending position right before the “>“: FIND(">", {Anchor Tag})
- To get the count, you need the distance between (2) & (1), so subtract (2) - (1): FIND(">", {Anchor Tag}) - (FIND("=", {Anchor Tag}) + 1)
Putting it all together:
MID({Anchor Tag}, FIND("=", {Anchor Tag}) + 1, FIND(">", {Anchor Tag}) - (FIND("=", {Anchor Tag}) + 1))
Here’s a link to a base with everything put together. I’ll leave it up for a few days:
Zemanir Airtable Consulting: www.zemanir.com
How would you be exporting this to Excel and what version of Excel are you using?
If you're exporting your Airtable data as a CSV I vaguely recall that there's a `=HYPERLINK()` formula for Excel, so you might want to format your Airtable data into that format first before the export
Can someone tell me the "simple" script for a formula field which would either:
1) Add a defined URL, add FIELD1 data behind it, and display FIELD2 as the text for the defined formula field.
2) Display the text from FIELD2 whilst linking to the URL defined in FIELD1
Thank you.
Can someone tell me the "simple" script for a formula field which would either:
1) Add a defined URL, add FIELD1 data behind it, and display FIELD2 as the text for the defined formula field.
2) Display the text from FIELD2 whilst linking to the URL defined in FIELD1
Thank you.
You can't use a formula field for this I'm afraid. You'll need an automation that updates a long text field with rich text formatting turned on


You could also do this with JavaScript via the script extension or Run a Script automation action
Link to base
You can't use a formula field for this I'm afraid. You'll need an automation that updates a long text field with rich text formatting turned on


You could also do this with JavaScript via the script extension or Run a Script automation action
Link to base
Thanks. I am sure that this would be very helpful but regretfully I can't see anyone's screenshots. They all appear as broken links.
Edit: cleared my cookies and now it works
Thanks
This isn't so straight forward from Zapier. Please see:
Zapier process:

Airtable results:

I found the final solution here which turned out to be:
Zapier process:

Result:
