Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We'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

Reply
israelovg
New Member

Custom Visual - How to get measure aggregation type

Hey guys,

 

I'm writing a custom matrix visual . The dataview has a matrix , when I get measures data(Values) , I need to know what type of aggregation measure is (sum, count , average , min ,max ).

 

How can I get measure aggregation type programmatically?

 

Here is my capabilities.json

{
        "dataRoles": [
            {
                "displayName": "Rows",
                "name": "rows",
                "kind": "Grouping"
            },
            {
                "displayName": "Columns",
                "name": "columns",
                "kind": "Grouping"
            },
            {
                "displayName": "Filters",
                "name": "filters",
                "kind": "Grouping"
            },
            {
                "displayName": "Values",
                "name": "measure",
                "kind": "Measure"
            }
        ],
        "dataViewMappings": [
            {
                "conditions": [
                    {
                        "rows": {
                            "max": 0
                        },
                        "columns": {
                            "max": 0
                        },
                        "measure": {
                            "min": 1
                        }
                    },
                    {
                        "rows": {
                            "min": 1
                        },
                        "columns": {
                            "min": 0
                        },
                        "measure": {
                            "min": 0
                        }
                    },
                    {
                        "rows": {
                            "min": 0
                        },
                        "columns": {
                            "min": 1
                        },
                        "measure": {
                            "min": 0
                        }
                    }
                ],
                "matrix": {
                    "rows": {
                        "select": [
                            {
                                "for": {
                                    "in": "rows"
                                }
                            },
                            {
                                "for": {
                                    "in": "filters"
                                }
                            }
                        ],
                        "dataReductionAlgorithm": {
                            "top": {
                                "count": 30000
                            }
                        }
                    },
                    "columns": {
                        "for": {
                            "in": "columns"
                        },
                        "dataReductionAlgorithm": {
                            "top": {
                                "count": 10000
                            }
                        }
                    },
                    "values": {
                        "select": [
                            {
                                "bind": {
                                    "to": "measure"
                                }
                            }
                        ]
                    }
                }
            }
        ],
        "objects": {
            "total": {
                "displayName": "Show Total",
                "properties": {
                    "columnTotal": {
                        "displayName": "Column",
                        "type": {
                            "bool": true
                        }
                    },
                    "rowTotal": {
                        "displayName": "Row",
                        "type": {
                            "bool": true
                        }
                    },
                    "columnGrandTotal": {
                        "displayName": "Grand Column",
                        "type": {
                            "bool": true
                        }
                    },
                    "rowGrandTotal": {
                        "displayName": "Grand Row",
                        "type": {
                            "bool": true
                        }
                    }
                }
            }
        }
    }
5 REPLIES 5
v-dancos
Microsoft Employee
Microsoft Employee

Is there any update on how to get measure aggregation type?

v-viig
Community Champion
Community Champion

You can try using the solution described in my previous comments.

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

v-viig
Community Champion
Community Champion

There's not good way to detect type but you might try to detect type by displayName.

 

image.png

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

 

I 'm trying to calculate matrix measure  totals/subtotals (sum,count,average,min,max) .

Is there a way configure my capabilities.json that will bring matrix measure  subtotals for row/column items?

 

Thanks in Advance .

v-viig
Community Champion
Community Champion

No, subtotals are not supported yet. This feature is on our backlog (no ETA).

 

Just one more note, If you calculate totals in JS they might be a bit wrong as Power BI does not allow to get more than 1000 rows by default. This value can be configure via dataReductionAlgorithm but it can't be greater than 30000.

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.