Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
{
"for": {
"in": "column"
}
},
{
"for": {
"in": "value"
}
},
{
"for": {
"in": "value2"
}
},
{
"for": {
"in": "value3"
}
},
{
"for": {
"in": "value4"
}
},
{
"for": {
"in": "value5"
}
},
{
"for": {
"in": "value6"
}
}
]
},
"dataReductionAlgorithm": {
"top": {
"count": 30000
}
}
}
}
]
He añadido una reducción de datos a las primeras 30.000, pero el visual todavía sólo trae las primeras 1000 filas
Cualquier pensamiento sobre por qué es muy apreciado
Solved! Go to Solution.
Hola
la configuración dataReductionAlgorithm debe aplicarse al objeto rows, no a toda la tabla (consulte https://docs.microsoft.com/de-de/power-bi/developer/visuals/dataview-mappings#data-reduction-algorit... también hay un ejemplo para tablas en la parte inferior). Intenta moverlo dentro del objeto de filas:
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
....
],
"dataReductionAlgorithm": {
"top": {
"count": 30000
}
}
}
}
}
]Saludos
Robert
Hola
la configuración dataReductionAlgorithm debe aplicarse al objeto rows, no a toda la tabla (consulte https://docs.microsoft.com/de-de/power-bi/developer/visuals/dataview-mappings#data-reduction-algorit... también hay un ejemplo para tablas en la parte inferior). Intenta moverlo dentro del objeto de filas:
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
....
],
"dataReductionAlgorithm": {
"top": {
"count": 30000
}
}
}
}
}
]Saludos
Robert
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.