Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hola a todos,
Creo que probé todas las soluciones posibles en la web, pero simplemente no puedo hacer que funcione y decidí publicar mi problema aquí antes de golpear mi cabeza contra la pared varias veces.
Quiero ejecutar un procedimiento almacenado con dos parámetros. Agregar un parámetro funciona bien, pero no puedo hacerlo con dos parámetros. ¿Alguna idea de lo que está mal con mi código?
dejar
Source = Sql.Database(sqlserver, "Database_01", [Query="execute sp_BE_FindBatch '"&ClientName"', '"&BatchNumber"' CreateNavigationProperties=false])
en
Fuente
Gracias por su tiempo.
Raoul
¿Es el mismo error al quitar
, CreateNavigationProperties = false
?
está vivo, está vivo, ¡ES ALIIIIIVE!
Muchas gracias por salvarme el día.
Este es el código de solución para otros que enfrentan el mismo problema
dejar
Source = Sql.Database(sqlserver, "Database_01", [Query="execute sp_BE_FindBatch '"&ClientName&"', '"&BatchNumber&"'"])
en
Fuente
de nada, por favor marque mi publicación como la solución 🙂
Te falta el "after &BatchNumber"'
necesitas una coma antes de CreateNavigationProperties...
ah lo siento, tiene que verse así:
let
Source = Sql.Database(sqlserver, "Database_01", [Query="execute sp_BE_FindBatch '"&ClientName&"', '"&BatchNumber&"'", CreateNavigationProperties=false])
in
Source
Debe agregar "&" después de ClientName y BatchNumber
Gracias. ¡Sin errores en la sintaxis! Desafortunadamente recibo este error de expresión ahora. ¿Algún pensamiento?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.