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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
kent_n
Frequent Visitor

month range combines with time range

Hi 

 

Im an absolute novice and tried google with no luck. 

Completely failed my first try to explain my issue (thanx @daXtreme :), hopefully this might explain what I want to achieve.

 

The following measure is working just fine, but only between april 1st and october 31st. 

From november 1st to march 31st the filtered value 

fixed_prices[Pristabell]="Profit_low" should instead be 
fixed_prices[Pristabell]="Profit_high" for all the hours between 06-22 (06AM-10PM)
Hours between 22-06 (10PM-06AM) are always "Profit_low" year around.

 

Subvention & Grid Compensation = 
(CALCULATE(
    SUMX(FILTER(
        fixed_prices,fixed_prices[Pristabell]="Elsubvention"||fixed_prices[Pristabell]="Profit_low"),fixed_prices[öre/KwH (ink moms)])) / 100)
        * SUM(Energy_sales_price[Production])

 

Energy_sales_price

kent_n_0-1667658716667.png

fixed_prices

kent_n_1-1667658794983.png

hour_table

kent_n_2-1667658913915.png

date_table

kent_n_3-1667659094034.png

 

 

Thanks in advance 🙂

1 ACCEPTED SOLUTION
daXtreme
Solution Sage
Solution Sage

Subvention & Grid Compensation =
// To get what you want you have to
// iterate over Date and Timme and
// take action accordingly.
// The dimensions should be connected
// by 1->>-* to the fact table. fixed_prices
// is a stand-alone table without any connections.
//
// Then you can write something like:
var SwitchMonthNumbers = 
    {
        1,  -- jan
        2,  -- feb
        3,  -- mar
        11, -- nov
        12  -- dec
    }
var Output = 
    sumx(
        summarize(
            Energy_sales_price,
            date_table[Date],
            // Make sure you've got MonthNumbers
            // in date_table.
            date_table[MonthNumber],
            hour_table[Timme],
            hour_table[High_low_hour]
        ),
        var CurrentMonthNumber = date_table[MonthNumber]
        var TotalProduction = 
            calculate( 
                SUM( Energy_sales_price[Production] ) 
            )
        var HighLowProfit = 
            if( hour_table[High_low_hour] = "High",
                "Profit_high",
                "Profit_low"
            )
        var FixedPriceTableFilter =
            {
                "Elsubvention",
                if(
                    CurrentMonthNumber in SwitchMonthNumbers,
                    HighLowProfit,
                    "Profit_low"
                )
            }
        var FixedPrice =
            SUMX(
                FILTER(
                    fixed_prices,
                    fixed_prices[Pristabell] in FixedPriceTableFilter
                ),
                fixed_prices[öre/KwH (ink moms)]
            )
            * TotalProduction / 100
        return
            FixedPrice
    )
return
    Output

Something like this. I did not do any optimization on this. Wrote it without any real data and model. Might work... might not. Try to adjust it to your model.

View solution in original post

4 REPLIES 4
daXtreme
Solution Sage
Solution Sage

Subvention & Grid Compensation =
// To get what you want you have to
// iterate over Date and Timme and
// take action accordingly.
// The dimensions should be connected
// by 1->>-* to the fact table. fixed_prices
// is a stand-alone table without any connections.
//
// Then you can write something like:
var SwitchMonthNumbers = 
    {
        1,  -- jan
        2,  -- feb
        3,  -- mar
        11, -- nov
        12  -- dec
    }
var Output = 
    sumx(
        summarize(
            Energy_sales_price,
            date_table[Date],
            // Make sure you've got MonthNumbers
            // in date_table.
            date_table[MonthNumber],
            hour_table[Timme],
            hour_table[High_low_hour]
        ),
        var CurrentMonthNumber = date_table[MonthNumber]
        var TotalProduction = 
            calculate( 
                SUM( Energy_sales_price[Production] ) 
            )
        var HighLowProfit = 
            if( hour_table[High_low_hour] = "High",
                "Profit_high",
                "Profit_low"
            )
        var FixedPriceTableFilter =
            {
                "Elsubvention",
                if(
                    CurrentMonthNumber in SwitchMonthNumbers,
                    HighLowProfit,
                    "Profit_low"
                )
            }
        var FixedPrice =
            SUMX(
                FILTER(
                    fixed_prices,
                    fixed_prices[Pristabell] in FixedPriceTableFilter
                ),
                fixed_prices[öre/KwH (ink moms)]
            )
            * TotalProduction / 100
        return
            FixedPrice
    )
return
    Output

Something like this. I did not do any optimization on this. Wrote it without any real data and model. Might work... might not. Try to adjust it to your model.

Sorry, eent through the whole year and double checked some vaulues.

I forgot that the conditions only apply to monday-friday! Saturday and sundays are always Low.

 

I´ve added a Column in my date_table named Day of week with monday = 0 and sunday = 6

I can´t figure out how to add this 😞

Worked right away! Thanks alot!


daXtreme
Solution Sage
Solution Sage

Completely unclear. Please get familiar with this first: How to Get Your Question Answered Quickly - Microsoft Power BI Community

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.