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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
KasperJ90
Helper III
Helper III

Calculated column from table with multiple ranges

Hi,

 

Need your help to add a calculated column based on each category. I have table 1 showing my categories and ranges and then table 2 with the "operation number" to use to sum all minutes within the category range.

 

Table 1:

Category 1: 8000..8099|8200..8999 

Category 2: 2000..7999|9000..9999

 

Table 2:

Operation No.Minutes
85005
899910
250080
9999100

 

Calculated column for category 1 = sum all minutes within category 1 ranges (in this case 15)

Calculated column for category 2 = sum all minutes within category 2 ranges (in this case 180)

 

Thank you in advance!

1 ACCEPTED SOLUTION
OzkanDhont
Resolver II
Resolver II

Hi @KasperJ90 !

 

Do you need it to be a calculated column?

I've created something similar in the past but as a measure which will save up on your data model.

 

Measure = 
CALCULATE(
    SUM('Table (2)'[No.Minutes]),
    FILTER(
        'Table (2)',
            COUNTROWS(
                FILTER(
                    'Table (1)',
                    'Table (2)'[Operations] > 'Table (1)'[Min] &&
                    'Table (2)'[Operations] <= 'Table (1)'[Max]
                )
            )
         )
)

You can download the pbix file for better understanding: 

https://filetransfer.io/data-package/ltw0G1YS#link

 

Hope it helped!

 

Kind regards,

OD

View solution in original post

1 REPLY 1
OzkanDhont
Resolver II
Resolver II

Hi @KasperJ90 !

 

Do you need it to be a calculated column?

I've created something similar in the past but as a measure which will save up on your data model.

 

Measure = 
CALCULATE(
    SUM('Table (2)'[No.Minutes]),
    FILTER(
        'Table (2)',
            COUNTROWS(
                FILTER(
                    'Table (1)',
                    'Table (2)'[Operations] > 'Table (1)'[Min] &&
                    'Table (2)'[Operations] <= 'Table (1)'[Max]
                )
            )
         )
)

You can download the pbix file for better understanding: 

https://filetransfer.io/data-package/ltw0G1YS#link

 

Hope it helped!

 

Kind regards,

OD

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.