A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi @Renee Crozier,
Thank you for posting your question in the Microsoft Q&A forum.
Based on your sharing, the issue highly comes from the variable definition in your code #"Replaced Value" = Table.TransformColumns(#"Filtered Rows", {{"LinkURL", each Record.FieldOrDefault(AllReplace, _, _)}}). When defining, you used #"AllReplace" but in the code you referenced AllReplace, which leading to using unknown AllReplace variable before you defined it.
I suggest you can try fixing the variable name from
#"AllReplace" = [
// Your entire replacement record
]
To
AllReplace = [
// Your entire replacement record
]
Then you can check again to see if the query works properly.
Please understand that our initial response does not always resolve the issue immediately. However, you can try workaround and share us more detailed information, we can work together to find a solution.
Thank you for your understanding and cooperation. I'm looking forward to your reply.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.