Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Solved! Go to Solution.
Hi, @YogiGuru ;
You could try to create a new table.
Table = ADDCOLUMNS( GENERATE(VALUES('Log'[EngineID]),VALUES('Code'[CodeID])),
"CodeDesc",CALCULATE(MAX('Code'[CodeDesc]),FILTER('Code',[CodeID]=EARLIER('Code'[CodeID]))),
"Total Value", CALCULATE(SUM('Log'[Value]),FILTER('Log',[LCodeID]=EARLIER('Code'[CodeID])&&[EngineID]=EARLIER('Log'[EngineID]))))
The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @YogiGuru ;
You could try to create a new table.
Table = ADDCOLUMNS( GENERATE(VALUES('Log'[EngineID]),VALUES('Code'[CodeID])),
"CodeDesc",CALCULATE(MAX('Code'[CodeDesc]),FILTER('Code',[CodeID]=EARLIER('Code'[CodeID]))),
"Total Value", CALCULATE(SUM('Log'[Value]),FILTER('Log',[LCodeID]=EARLIER('Code'[CodeID])&&[EngineID]=EARLIER('Log'[EngineID]))))
The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@YogiGuru , if there two tables are joined and you are using power bi dataset, you should be able to selected choice of your column
In DAX you have naturalinnerjoin
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/