I’m not a REGEX expert, but will the first part of the link always be consistent like that? In other words, will everything be consistent up to “folders/”?
If so, then you could do a simple non-REGEX formula like this:
I’m not a REGEX expert, but will the first part of the link always be consistent like that? In other words, will everything be consistent up to “folders/”?
If so, then you could do a simple non-REGEX formula like this:
I confirm this is always consistent. It seems better than REGEX.
It works well. Thank you very much!
Just for information. This formula does almost the same thing, but it cuts some number of characters at left part, so it can be applied with static number without using FIND() if all the links are the same up to …/folders/
REPLACE({Link},1,39,'')
Just for information. This formula does almost the same thing, but it cuts some number of characters at left part, so it can be applied with static number without using FIND() if all the links are the same up to …/folders/
REPLACE({Link},1,39,'')
Nice! Even better! :cowboy_hat_face:
I am new at this, but loving the formulas! thanks all!