Forum Discussion
Anonymous
6 years agoNot applicable
Combining Summarize and Lookupvalue
Hi, Im struggling with the following, any help is much appreciated. I have a table called "Product" with information and a newly created Table called "Information" where some of the information f...
- 6 years ago
Perhaps:
New Table = SUMMARIZE( FILTER('Table',[Product Type] = "Bike"), [Name], "Amount",SUM('Table'[Amount]) )
amitchandak
6 years agoSuper User
Anonymous , Try like
summarize(filter(Table,Table[Product Type]="Bike"),table[Name], "Amount", sum(Table[Amount]))
If you put a Slicer of Product Type and filter Bike and use any visual with Name and sum of Amount. you should get this
- Anonymous6 years agoNot applicable
Very much appreciated Amitchandak. Will try it now.
Thanks