Forum Discussion
roopa_123
4 years agoHelper I
DAX query
Hi, I have my report visualization as below. The Instance column has various sources in my data. So, for each instance, the table visual show should only 1 row per Instance i.e., if the Instance is ...
webportal
4 years agoImpactful Individual
Hi roopa_123
Yes, you may also build a table with that aggregation. Select "Modelling" > "New table" from the top menu and write the following expression:
New table = SUMMARIZE('Table', 'Instance', "Last Run", MAX('Table'[Latest successful runs]), "Total Runs", SUM('Table'[Runs]))
This should create a new table in your data model.