Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi all,
I am a new using power query and I heve the error scenario when I try to execute a test with dataflow:
"Expression.Error: A cyclic reference was found during the evaluation."
This is my power query:
I am trying to take the special characters of a text (example: "24.462.349/0001-03" to "24462349000103"). But always receive the same error.
Thanks in advance!
Rafael Santos
FYI that a quick way to strip the numbers out of a text column is to add a custom column with the Text.Select() function.
= Text.Select([Column1], {"0".."9"})
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
This part
#"Linhas filtradas 1" = Table.SelectRows(#"Linhas filtradas", each Text.Contains([accountnumber], ".") or Text.Contains([accountnumber], "/") or Text.Contains([accountnumber], "-"))
= Table.ReplaceValue(accounts,".","",Replacer.ReplaceText,{accountnumber}) or Table.ReplaceValue(accounts,"/","",Replacer.ReplaceText,{accountnumber})
or Table.ReplaceValue(accounts,"-","",Replacer.ReplaceText,{accountnumber})
is malformed. Please review. The result is a logical comparison between SelectRows and ReplaceValue. Likely not what you intended.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |