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
123abc
Community Champion
Community Champion

Need Formula for Calculate column

sumif based on different criteria in power bi (Need Measure or calculated column).
‎08-30-2023 11:11 AM

Hi Experts:

i want to sumup Turnover data based on below different criteria (May measure or calculated column).

In my assignemtn there are 4 Tables (All tables are relational) :

1: Sales Turnvoer Table / Live Sales Journal invoice level entries.
2: Singed Turnvoer Table.  customer given with IDs and custoemr wise turnvoer amount given.
3: Item Master Table. like Refrigerator, Deep Freezer, Split AC, Microwave oven, Water Dispanser, Washing Machine.
4: Customer Master Table. 

Criterias:

1: 'Sales Table'[Invoice Date] >= DATE(202381)

2: 'Sales Table'[Invoice Date] <= DATE(20231231)

3:  RELATED('ITEM MASTER'[FG_PRODUCT]) IN {"Ref_D/Cool" , "Deep Freezer", "Split AC"}

4: '5 MTO Signed'[NewKey] = 'Sales Table'[NewKey]

Requirement:

I wants to sum sales turnvoer of Refrigerator, Deep Freezer, Split AC from 1st Aug 23 to 31st Dec 23 only those customers whose have singed turnvoer amount.
i wants to present both dealers parallel that how much he signed turnover and how much he generate turnvoer in sales journal.

Already tried Measures:

 

Measure 1:

TargetedTurnover =
CALCULATE(
    SUM('Sales Table'[NetSales]),
    FILTER(
        'Sales Table',
        '5 MTO Signed'[NewKey] = 'Sales Table'[NewKey]
        && 'Sales Table'[Invoice Date] >= DATE(202381)
        && 'Sales Table'[Invoice Date] <= DATE(20231231)
        && RELATED('ITEM MASTER'[FG_PRODUCT]IN {"Ref_D/Cool" , "Deep Freezer""Split AC"}
    )
)

Measure 2:

Turnover Aug-Dec 2023 =
VAR StartDate = DATE(202381)
VAR EndDate = DATE(20231231)
VAR CustomerCode = '5 MTO Signed'[NewKey]
RETURN
    SUMX(
        FILTER(
            'Sales Table',
            'Sales Table'[NewKey] = '5 MTO Signed'[NewKey] &&
            'Sales Table'[Invoice Date] >= StartDate &&
            'Sales Table'[Invoice Date] <= EndDate &&
            RELATED('ITEM MASTER'[FG_PRODUCT]IN {"Ref_D/Cool" , "Deep Freezer""Split AC"}
        ),
        'Sales Table'[NetSales]
    )

Above measures are not shwo required results.

 

Sample pbix file is given 

https://drive.google.com/file/d/11AeFr96LfLGEIRuAlRY-HxEiTqJSEcKl/view?usp=sharing

1 REPLY 1
Rupak_bi
Impactful Individual
Impactful Individual

are you still searching for the solution or its resolved?

 



Regards
Rupak
FOLLOW ME : https://www.linkedin.com/in/rupaksar/

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.