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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Florian_Kluge
Regular Visitor

Combining Addcolumns, Related, Summarize and Calculatetable

Dear all,

 

I'm quite new to Power BI and try to deal with DAX more and more.

 

I would like to create a virtual Table with the following step and the 3rd step failed:

 

var Price_Index1 = ADDCOLUMNS('Price Index',"Quarters_from_now",related('Price Index Quarters'[Quarters from now]))
var Price_Index2 = SUMMARIZE(Price_Index1,'Price Index'[Material No], [Quarters_from_now], 'Price Index'[Quarter Year], 'Price Index'[Price],'Price Index'[Qty])
var Price_Index3 = CALCULATETABLE(Price_Index2, Quarters_from_now>3)
return Price_Index3

 

What did I wrong?

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Florian_Kluge , Try with these change , a new table

 

var Price_Index1 = ADDCOLUMNS('Price Index',"Quarters_from_now",related('Price Index Quarters'[Quarters from now]))
var Price_Index2 = SUMMARIZE(Price_Index1,Price_Index1[Material No], Price_Index1[Quarters_from_now], Price_Index1[Quarter Year], Price_Index1[Price],Price_Index1[Qty])
var Price_Index3 = CALCULATETABLE(Price_Index2, Price_Index2[Quarters_from_now]>3)
return Price_Index3

View solution in original post

4 REPLIES 4
PaulDBrown
Community Champion
Community Champion

Does this work?

New Table =
SUMMARIZE (
    FILTER ( 'Price Index', 'Price Index Quarters'[Quarters from now] > 3 ),
    'Price Index'[Material No],
    'Price Index Quarters'[Quarters from now],
    'Price Index'[Quarter Year],
    'Price Index'[Price],
    'Price Index'[Qty]
)




Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Hi @PaulDBrown : Thanks a lot, this also helps if I put the 

'Price Index Quarters'[Quarters from now]  in the related function.

Thanks

amitchandak
Super User
Super User

@Florian_Kluge , Try with these change , a new table

 

var Price_Index1 = ADDCOLUMNS('Price Index',"Quarters_from_now",related('Price Index Quarters'[Quarters from now]))
var Price_Index2 = SUMMARIZE(Price_Index1,Price_Index1[Material No], Price_Index1[Quarters_from_now], Price_Index1[Quarter Year], Price_Index1[Price],Price_Index1[Qty])
var Price_Index3 = CALCULATETABLE(Price_Index2, Price_Index2[Quarters_from_now]>3)
return Price_Index3

@amitchandak: Thanks a lot, now I see it more a matter of the AutoCompletion, which does not present the column names of virtual tables

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.