Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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...
  • Greg_Deckler's avatar
    6 years ago

    Perhaps:

     

    New Table = 
        SUMMARIZE(
          FILTER('Table',[Product Type] = "Bike"),
          [Name],
          "Amount",SUM('Table'[Amount])
        )