Create a Calculated table - Power BI
community.powerbi.com › t5 › DesktopFeb 19, 2018 · If I understand you correctly, you should be able to use the formula below to create a new calculate table to get the expected result in your scenario. Table = SUMMARIZE ( 'Table1', 'Table1'[project Code], 'Table1'[last_name], "Budget approved", CALCULATE ( FIRSTNONBLANK ( 'Table1'[actual_date], 1 ), FILTER ( 'Table1', 'Table1'[milestone_name] = "Budget approved" ) ) )
Using calculated tables in Power BI Desktop - Power BI
learn.microsoft.com › en-us › power-biJan 13, 2023 · Functions for calculated tables. You can define a calculated table by any DAX expression that returns a table, including a simple reference to another table. For example: New Western Region Employees = 'Western Region Employees' This article provides only a quick introduction to calculated tables. You can use calculated tables with DAX to solve many analytical problems. Here are some of the more common DAX table functions you might use: DISTINCT; VALUES; CROSSJOIN; UNION; NATURALINNERJOIN