Forum Discussion
Anonymous
4 years agoNot applicable
dataviewmapping dataReductionAlgorithm not increasing number of rows inputted
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
{
"for": {
"in": "column"
}
},
...
- 4 years ago
Hi,
the dataReductionAlgorithm-setting should be applied to the rows object, not to the whole table (see https://docs.microsoft.com/de-de/power-bi/developer/visuals/dataview-mappings#data-reduction-algorithm-usage, there is also an example for tables at the bottom). Try moving it inside the rows object:
"dataViewMappings": [ { "table": { "rows": { "select": [ .... ], "dataReductionAlgorithm": { "top": { "count": 30000 } } } } } ]Best regards,
Robert
ripach
4 years agoNew Member
Hi,
the dataReductionAlgorithm-setting should be applied to the rows object, not to the whole table (see https://docs.microsoft.com/de-de/power-bi/developer/visuals/dataview-mappings#data-reduction-algorithm-usage, there is also an example for tables at the bottom). Try moving it inside the rows object:
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
....
],
"dataReductionAlgorithm": {
"top": {
"count": 30000
}
}
}
}
}
]Best regards,
Robert
- Anonymous4 years agoNot applicable
Ah great spot thanks ripach !