Hola, realice estos pasos y arroja un error https://community.powerbi.com/t5/forums/postpage/board-id/power-bi-services #
Quiero Usar un valor de celda para filtrar datos.
Gracias
Solved! Go to Solution.
Okay thanks. I don't think that you need the #datetime(). You should be able to use:
[Update_Date] > #"Fecha"
If this does not work, then try something like:
DateTime.From( [Update_Date] ) > #"Fecha"
Many thanks
Daryl
Hola @Daryl-Lynch-Bzy Es una celda donde modifico la fecha y deseo filtrar el resultado como si fuera un parámetro
Okay thanks. I don't think that you need the #datetime(). You should be able to use:
[Update_Date] > #"Fecha"
If this does not work, then try something like:
DateTime.From( [Update_Date] ) > #"Fecha"
Many thanks
Daryl
Muchas Gracias, con la primera opción se pudo resolver. Gracias.
Hola @JOSSER - the datetime function is expecting the following, for example: #datetime( 2022, 11, 11, 17, 57, 24 ). It appears that you are only providing a single value. Could you please share an example of the single value to see if there is another approach to use.