Hello community,
I would like to extract data from the data in a column and extract the data using a delimiter second occurrence (.) from the end of the string. Below is the example and the expected output.
| Input | Expected Output |
| ABC.DEF.GHI | DEF.GHI |
| JKL,MNO,PQR | MNO.PQR |
| STU,VWX,YZA | VWX.YZA |
Can I get two possible options of achieving this. One would be using Regex and one would be using a formula similar to below, I was able to figure out on extracting the text after the last delimiter, but not two occurrences.
Right([JSON_Name], FindString(ReverseString([JSON_Name]), ".")) - Formula to extract from the end for the first occurrence of a delimiter
Thank you in advance.