Forum Discussion

superME79's avatar
superME79
Frequent Visitor
4 years ago
Solved

DERIVATED TABLE

Hello everybody,
I would like to calculate a table by reviving it from another
example
table 1
a b c

table 2 bc

do you have any advice in DAX 🙂

  • superME79 , Create a new Table like below:

    Table 2 = SUMMARIZE(Table1,Table1[a],Table1[b])
     

3 Replies

  • Hi,

    A Better way to ask this question would be to share a sample for Table 1 and give an expected output for Table 2. That might fast track this question to being answered

    • Tahreem24's avatar
      Tahreem24
      Super User

      superME79 , Create a new Table like below:

      Table 2 = SUMMARIZE(Table1,Table1[a],Table1[b])