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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Create a new table from existing table with calculated measures

Hi Community,

 

I need help with creating another table from the existing table with measures calculated with few conditions.

 

I have a dataset with 10 Years for 2 companies and calculated measure (Value_cal)

Attached the sample data

https://drive.google.com/open?id=1Ie4DUNFy5dZb5H8xIoxJI0AcLiaH9rRa 

Now I want to create another table from an existing table  with below filters

Company =" Company1" and month, year of the data set=2019- Jan and summarize calculated measure with respect to each product

Expected table

CompanyProductDateValue_cal
Company1Product12019-01-014
Company2Product22019-01-014
Company3Product32019-01-01 

 

 

 

 

Any help would be  great full

Thanks

 

2 REPLIES 2
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

Please see the attached Table Expression.

 

YourNewTable = 
ADDCOLUMNS(
    GROUPBY(
        FILTER(
            ADDCOLUMNS(
                YourTable,
                "YearMonth", 
                    VAR d = YourTable[Date]
                    RETURN YEAR( d ) * 100 + MONTH( d )
            ),
            YourTable[Company] = "Company1"
            && [YearMonth] = 201901
        ),
        YourTable[Company],
        YourTable[Product],
        [YearMonth]
    ),
    "Value_cal", CALCULATE( SUM( YourTable[Value_cal] ) ) -- or replace Calculate with your Measure 
)   

Regards,
Mariusz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

@Mariusz 

Thanks for the reply,

In my original dataset,

To calculate the final Value, I have Fixed the values with respect to year and each category and also used all except functions.

As per the above solution, it was giving wrong values 

 

Any solution would be grateful

 

Thanks

Yamuna

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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