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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
RonSon2015
Frequent Visitor

Sum of turnover where no reference price exists

Hello,
I've the following issue. I've got 3 table.
a) fact table - includes actual turnover on material number level
b) calendar
c) reference price - linked to fact table by material number (is only a reference but is not the price per item to calculate turnover)

I want to calculate the turnover for all materials that have no reference price. May current formula which works on material number level:

 

Sum_missing_ref-price YTD CY (EUR) :=
IF (
    ISBLANK (
        CALCULATE (
            SUM ( REF_price[EU reference price) (EUR)] );
            DATESYTD ( 'Calendar'[Date]; "12/31" )
        )
    );
    [Turnover YTD CY (EUR)];
    0
)

 



However, I don't get a sum on overall level (result is blank for sum over materials that have reference prices and have not reference prices.

The following formula gives me no results. Even not on single material level.

 

Count_missing_ref-price YTD CY (EUR)2 :=
CALCULATE (
    SUM ( Sales_Cond[Condition value (LC)] );
    FILTER (
        REF_price;
        IF (
            ISBLANK (
                CALCULATE (
                    SUM ( REF_price[EU reference price (EUR)] );
                    DATESYTD ( 'Calendar'[Date]; "12/31" )
                )
            );
            [TGS YTD CY (EUR)];
            0
        )
    )
)

 

 

What am I doing wrong?

Thanks in advance for any hints.

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

Sum_missing_ref-price YTD CY (EUR) :=
sumx(values(facttable[material_id]);IF (
    ISBLANK (
        CALCULATE (
            SUM ( REF_price[EU reference price) (EUR)] );
            DATESYTD ( 'Calendar'[Date]; "12/31" )
        )
    );
    [Turnover YTD CY (EUR)];
    0
))

View solution in original post

1 REPLY 1
wdx223_Daniel
Super User
Super User

Sum_missing_ref-price YTD CY (EUR) :=
sumx(values(facttable[material_id]);IF (
    ISBLANK (
        CALCULATE (
            SUM ( REF_price[EU reference price) (EUR)] );
            DATESYTD ( 'Calendar'[Date]; "12/31" )
        )
    );
    [Turnover YTD CY (EUR)];
    0
))

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.