Nov 04, 2023 12:11 PM
@Sho answered my first URL audit Find formula question:
My followup question/challenge:
I want to clean up (not just identify) the {Link URL} field and join it with {reftag} field:
Add
Remove
Then join two fields ({Link URL} & {reftag}) based on logic:
Here is the original solution used to callout errors in the {Link URL} field:
IF(
{Link URL},
IF(
OR(
FIND("http://", {Link URL}),
NOT(FIND("https://", {Link URL}))
),
'missing https, '
) &
IF(
FIND("http://", {Link URL}),
'missing https, '
) &
IF(
FIND("ref=", {Link URL}),
'remove ref=, '
) &
IF(
FIND("ref_=", {Link URL}),
'remove ref_=, '
) &
IF(
FIND("'", {Link URL}),
'remove apostrophe, '
) &
IF(
FIND("§", {Link URL}),
'remove §, '
)
)
Solved! Go to Solution.
Nov 05, 2023 06:34 PM
@airballer86 Couple ideas to try
https://www.loom.com/share/58320af793454079999b5ed14a2e3704
If that's still not working can you screenshot your table? Need to check all field names got converted properly
Nov 05, 2023 08:02 PM
@Arthur_Tutt It's working now! User error on my part; I did not capitalize the RL in the variable name originalURL. Thank you so much for your solution, and introducing me to Loom! I do wish there was a way to give your solution a SuperKudos!