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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
HankScorpio2
Helper I
Helper I

Summed Table - Cannot replicate table measure

Hi

 

I am trying to replicate a "measure". It's in inverted quotes as it doesn't behave like a measure and looks more like a table symbol with a summation on it.

 

See Screenshot.

 

summeasure.png

 

I want to replicate that summation from the 2024 table in the 2025 table.

If I try to create it by creating a measure or a column it fails.

 

The code is 

Weekday to complete = SUMX(FILTER('Date', 'Date'[Date] >= 'Mail Apps 2024'[Received] && 'Date'[Date] <= 'Mail Apps 2024'[Completed Date]), 'Date'[is work day])

What is it? And how do I replicate it?

1 ACCEPTED SOLUTION
v-karpurapud
Community Support
Community Support

Hi @HankScorpio2 

Thanks for reaching out to the Microsoft Fabric Community Forum.

By reproducing the scenario using a sample dataset.

vkarpurapud_0-1734420362757.pngvkarpurapud_1-1734420389960.png

To resolve the issue, here is the modified DAX formula .

DAX:

Weekday to complete 2025 =

SUMX(

    FILTER(

        'Date',

        'Date'[Date] >= SELECTEDVALUE('MailApps2025'[Received]) &&

        'Date'[Date] <= SELECTEDVALUE('MailApps2025'[Completed Date])

    ),

    'Date'[is work day]

)

After applying the above DAX formula in the Table visual, here is the output:

vkarpurapud_2-1734420436739.png

This approach resolved the issue of ambiguity in the measure, allowing for filtering the Date table correctly and calculating the total number of workdays between the specified date range.

If you have any further questions or need additional help with this, feel free to reach out     to us for further assistance!

If you find this post helpful, please mark it as an "Accept as Solution" and give a KUDOS.

 

 

View solution in original post

2 REPLIES 2
v-karpurapud
Community Support
Community Support

Hi @HankScorpio2 

Thanks for reaching out to the Microsoft Fabric Community Forum.

By reproducing the scenario using a sample dataset.

vkarpurapud_0-1734420362757.pngvkarpurapud_1-1734420389960.png

To resolve the issue, here is the modified DAX formula .

DAX:

Weekday to complete 2025 =

SUMX(

    FILTER(

        'Date',

        'Date'[Date] >= SELECTEDVALUE('MailApps2025'[Received]) &&

        'Date'[Date] <= SELECTEDVALUE('MailApps2025'[Completed Date])

    ),

    'Date'[is work day]

)

After applying the above DAX formula in the Table visual, here is the output:

vkarpurapud_2-1734420436739.png

This approach resolved the issue of ambiguity in the measure, allowing for filtering the Date table correctly and calculating the total number of workdays between the specified date range.

If you have any further questions or need additional help with this, feel free to reach out     to us for further assistance!

If you find this post helpful, please mark it as an "Accept as Solution" and give a KUDOS.

 

 

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but if you are trying to create a calcualted column in 'Mail Apps 2025' table, please try something like below and check whether it works.

 

Weekday to complete =
SUMX (
    FILTER (
        'Date',
        'Date'[Date] >= 'Mail Apps 2025'[Received]
            && 'Date'[Date] <= 'Mail Apps 2025'[Completed Date]
    ),
    'Date'[is work day]
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors